Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/title_text"
- style="?textTitle"/>
- <ScrollView
- android:layout_width="fill_parent"
- android:layout_height="0px"
- android:layout_weight="1"
- style="?pageBackground">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/subtitle_text"
- style="?textSubheader"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- style="?whiteBackground">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="This is large text."
- style="?textLarge"/>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="This is regular text."
- style="?textRegular"/>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- style="?textRegular"/>
- </LinearLayout>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="List view below"
- style="?textSubheader"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- style="?whiteBackground">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="List item 1."
- style="?listItem"/>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1sp"
- style="?listDivider"/>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="List item 2."
- style="?listItem"/>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1sp"
- style="?listDivider"/>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="List item 3."
- style="?listItem"/>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1sp"
- style="?listDivider"/>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="List item 3."
- style="?listItem"/>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1sp"
- style="?listDivider"/>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="List item 3."
- style="?listItem"/>
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement