0% found this document useful (0 votes)
10 views4 pages

Practical No 6.1

The document is an XML layout for an Android application, specifically a TableLayout containing multiple TableRows. Each TableRow consists of a TextView labeled 'Student Name=' and an EditText field pre-filled with various student names. The layout is designed to accommodate user input for student names in a structured format.

Uploaded by

userid13042006
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views4 pages

Practical No 6.1

The document is an XML layout for an Android application, specifically a TableLayout containing multiple TableRows. Each TableRow consists of a TextView labeled 'Student Name=' and an EditText field pre-filled with various student names. The layout is designed to accommodate user input for student names in a structured format.

Uploaded by

userid13042006
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Practical No 6.

1
<?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:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">
</TextView>
<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Dev Gabhne"
android:textSize="25dp">
</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">
</TextView>
<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Chinmay Yadav"
android:textSize="25dp">
</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">
</TextView>
<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Vitush Vaore"
android:textSize="25dp">

</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">

</TextView>

<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Pawan devkule"
android:textSize="25dp">

</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">

</TextView>

<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Ashish sharma"
android:textSize="25dp">

</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">

</TextView>

<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Vikram Gupta"
android:textSize="25dp">

</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">

</TextView>

<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Anshul more"
android:textSize="25dp">

</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">

</TextView>

<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="omkar handge"
android:textSize="25dp">

</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">
</TextView>

<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Karan K"
android:textSize="25dp">

</EditText>
</TableRow>
<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Student Name="
android:textSize="25dp">

</TextView>

<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="Yash Pawar"
android:textSize="25dp">

</EditText>
</TableRow>

</TableLayout>

You might also like