You are on page 1of 7

PRACTICAL 5

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".MainActivity">

<LinearLayout

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical">

<TextView

android:id="@+id/textView3"

android:layout_width="match_parent"

android:layout_height="32dp"

android:text="Name= Nayan Bhagat" />

<TextView

android:id="@+id/textView"

android:layout_width="match_parent"

android:layout_height="42dp"

android:text="Age-18" />

<TextView

android:id="@+id/textView2"

android:layout_width="match_parent"
android:layout_height="42dp"

android:text="Phone NO-1234567890" />

<Button

android:id="@+id/button"

android:layout_width="wrap_content"

android:layout_height="50dp"

android:text="Submit" />

</LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

PRACTICAL 6

<?xml version="1.0" encoding="utf-8"?>

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:paddingLeft="10dp"

android:paddingRight="10dp"

tools:context=".MainActivity">

<TableRow android:background="" android:padding="5dp" >

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="Roll No"/>

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"
android:layout_weight="1"

android:text="Name "/>

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="Branch "/>

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text=" Contact no"/>

</TableRow>

<TableRow android:background="#DAE8FC" android:padding="5dp" >

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="39"/>

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="Nayan bhagat "/>

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="CO "/>
<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:text="9284734621"/>

</TableRow>

</TableLayout>

PRACTICAL7

<?xml version="1.0" encoding="utf-8"?>

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

tools:context=".MainActivity">

<TextView

android:layout_x="110px"

android:layout_y="110px"

android:text="User name"

android:layout_width="wrap_content"

android:layout_height="wrap_content"/>

<EditText

android:layout_x="350px"

android:layout_y="80px"

android:width="100px"

android:hint="Enter user name"

android:layout_width="200dp"

android:layout_height="wrap_content"/>

<TextView
android:layout_x="110px"

android:layout_y="200px"

android:text="Password"

android:layout_width="wrap_content"

android:layout_height="wrap_content"/>

<EditText

android:layout_x="350px"

android:layout_y="150px"

android:width="100px"

android:password="true"

android:layout_width="200dp"

android:layout_height="wrap_content"/>

<Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Login"

android:layout_x="300px"

android:layout_y="300px"/>

</AbsoluteLayout>

PRACTICAL 8

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"

android:layout_height="match_parent"

android:paddingLeft="20dp"

android:paddingRight="20dp"

android:orientation="vertical"

android:id="@+id/linear_layout"

tools:context=".MainActivity">

<AutoCompleteTextView

android:id="@+id/ac_Country"

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:layout_marginTop="100dp"

android:hint="Enter Subject="/>

</LinearLayout>

package com.example.exp8;

import androidx.appcompat.app.AppCompatActivity;

import android.view.View;

import android.widget.Adapter;

import android.widget.AdapterView;

import android.widget.ArrayAdapter;

import android.widget.AutoCompleteTextView;

import android.widget.Toast;

import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

String[]Subjects={"MAD","MNG","PWP","NIS"};
@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

ArrayAdapter<String>adapter=new
ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line,Subjects);

AutoCompleteTextView actv=(AutoCompleteTextView)findViewById(R.id.ac_Country);

actv.setThreshold(1);

actv.setAdapter(adapter);

actv.setOnItemClickListener(new AdapterView.OnItemClickListener() {

@Override

public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

Toast.makeText(getApplicationContext(),"Selected Item:"+parent.getSelectedItem(),

Toast.LENGTH_SHORT).show();

});

You might also like