Write a Program to accept and display the student information

 Code:

<?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"
    tools:context=".MainActivity"
    android:orientation="vertical">

    <TextView
        android:id="@+id/t1"
        android:text="Student Information"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="30dp"
        android:textStyle="bold"
        android:cursorVisible="true"
        android:layout_gravity="center"
        android:layout_marginTop="20dp"
        android:textColor="@color/colorAccent"
        />

    <TextView
        android:id="@+id/t2"
        android:text="Name:"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="20dp"
        android:textStyle="bold"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="20dp"
        />

    <EditText
        android:id="@+id/e1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Enter the Student Name"
        android:textSize="20dp"
        android:layout_marginLeft="20dp"
        />

    <TextView
        android:id="@+id/t3"
        android:text="Age:"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="20dp"
        android:textStyle="bold"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="20dp" />

    <EditText
        android:id="@+id/e2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Enter the Student Age"
        android:textSize="20dp"
        android:layout_marginLeft="20dp"
        android:inputType="number"  />

    <TextView
        android:id="@+id/t4"
        android:text="Mobile Number:"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="20dp"
        android:textStyle="bold"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="20dp" />

    <EditText
        android:id="@+id/e3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Enter the Student

                    Mobile   Number"
        android:textSize="20dp"
        android:layout_marginLeft="20dp"
        android:inputType="number" />

    <Button
        android:id="@+id/b1"
        android:text="Submit"
        android:textSize="20dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:layout_gravity="center"
        android:background=

"@color/colorPrimaryDark"
        android:textColor="#ffff" 

        />

</LinearLayout>




Output:

Comments

Popular posts from this blog

Write a Program to create a toggle button to display the ON/OFF Bluetooth on the display screen.

Write a program to create a first display screen on any search engine using auto complete text View