Posts

Write a program to display all the data types in object-oriented programming using Frame layout.

Image
  *Program* <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="wrap_content"     android:layout_height="match_parent"     tools: context=".MainActivity">     <TextView         android:layout_width="match_parent"         android:layout_height="66dp"         android:text="Data Types in Object Oriented Programming"         android:textSize="25dp"         android:textStyle="bold" />     <TextView         android: id="@+id/pd"         andr...

Write a program to display 10 students’ basic information in a table form using Table layout

Image
  *Program* <?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"     tools: context=".MainActivity"     android:stretchColumns="*">     <TableRow         android: id="@+id/tr1"         android:layout_width="match_parent"         android:layout_height="wrap_content">         <TextView             android:layout_width="wrap_content"       ...