Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
8 views1 page

Scroll View

The document is an XML layout for an Android application. It contains a ScrollView that holds a LinearLayout with four buttons, each labeled 'Button 1' to 'Button 4'. The layout is designed to be responsive, with buttons spanning the full width of the screen.
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)
8 views1 page

Scroll View

The document is an XML layout for an Android application. It contains a ScrollView that holds a LinearLayout with four buttons, each labeled 'Button 1' to 'Button 4'. The layout is designed to be responsive, with buttons spanning the full width of the screen.
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/ 1

<?xml version="1.0" encoding="utf-8"?

>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 1" />

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 2" />

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 3" />

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 4" />

</LinearLayout>
</ScrollView>

You might also like