0% found this document useful (0 votes)
2 views2 pages

Practical 5 MAD

The document is an XML layout for an Android application using AbsoluteLayout. It contains multiple View and TextView elements with specified dimensions and positions, displaying names of individuals. The background color is set to white and the layout is designed to fill the parent container.

Uploaded by

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

Practical 5 MAD

The document is an XML layout for an Android application using AbsoluteLayout. It contains multiple View and TextView elements with specified dimensions and positions, displaying names of individuals. The background color is set to white and the layout is designed to fill the parent container.

Uploaded by

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

<?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:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
tools:context=".MainActivity">

<!--sub view 1-->

<!--sub view 2-->


<View
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_x="1dp"
android:layout_y="34dp"
android:background="@color/white" />

<View
android:layout_width="165dp"
android:layout_height="102dp"
android:layout_x="150dp"
android:layout_y="150dp"
android:background="@color/white" />

<!--sub view 3-->

<View
android:layout_width="140dp"
android:layout_height="99dp"
android:layout_x="228dp"
android:layout_y="314dp"
android:background="@color/white" />

<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="163dp"
android:layout_y="190dp"
android:text="name=Devdas Jadhav" />

<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="0dp"
android:layout_y="51dp"
android:text="Name=Vaishnav Jagtap" />

<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="229dp"
android:layout_y="340dp"
android:text="name=Trupti nalwade" />

</AbsoluteLayout>

You might also like