5 Program to display 10 students basic information in a table using Table Layout in Android Studio

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

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

    package="com.blogspot.codingatharva.firstapp" >



    <application

        android:allowBackup="true"

        android:icon="@mipmap/ic_launcher"

        android:label="@string/app_name"

        android:roundIcon="@mipmap/ic_launcher_round"

        android:supportsRtl="true"

        android:theme="@style/AppTheme" >

        <activity android:name=".MainActivity" >

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />



                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>





</manifest>


MainActivity.java:
package com.blogspot.codingatharva.firstapp;



import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;



public class MainActivity extends AppCompatActivity {



    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

    }

}


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

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

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

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:collapseColumns="*"

    android:shrinkColumns="*"

    tools:context=".MainActivity">



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:gravity="center_horizontal">



        <TextView

            android:layout_width="match_parent"

            android:layout_height="wrap_content"



            android:text="10 Students Basic Information"

            android:textColor="#86AD33"

            android:textSize="20dp"

            android:textStyle="bold" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student Numbers"

            android:textColor="#000"

            android:textStyle="bold" />



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Name"

            android:textColor="#000"

            android:textStyle="bold" />



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="RollNo"

            android:textColor="#000"

            android:textStyle="bold" />



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Age"

            android:textColor="#000"

            android:textStyle="bold" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content"

            android:text="Student 1:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content"

            />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 2:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 3:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 4:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 5:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 6:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 7:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 8:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 9:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>



    <TableRow

        android:layout_width="match_parent"

        android:layout_height="wrap_content">



        <TextView

            android:layout_width="0dp"

            android:layout_weight="1"

            android:text="Student 10:"

            android:textColor="#86AD33"

            android:textStyle="bold" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />



        <EditText

            android:layout_width="0dp"

            android:layout_weight="1"

            android:layout_height="wrap_content" />

    </TableRow>





</TableLayout>


Output:


Table Layout in Android Studio

10 Students Info in Table Layout in Android Studio

Previous
Next Post »