Advertisement
Guest User

Untitled

a guest
Sep 11th, 2011
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3.     xmlns:android="http://schemas.android.com/apk/res/android"
  4.     android:orientation="vertical"
  5.     android:layout_width="fill_parent"
  6.     android:layout_height="fill_parent">
  7.  
  8.     <TextView
  9.         android:layout_width="fill_parent"
  10.         android:layout_height="wrap_content"
  11.         android:text="@string/title_text"
  12.         style="?textTitle"/>
  13.  
  14.     <ScrollView
  15.         android:layout_width="fill_parent"
  16.         android:layout_height="0px"
  17.         android:layout_weight="1"
  18.         style="?pageBackground">
  19.  
  20.         <LinearLayout
  21.             android:orientation="vertical"
  22.             android:layout_width="fill_parent"
  23.             android:layout_height="wrap_content">
  24.  
  25.             <TextView
  26.                 android:layout_width="fill_parent"
  27.                 android:layout_height="wrap_content"
  28.                 android:text="@string/subtitle_text"
  29.                 style="?textSubheader"/>
  30.  
  31.             <LinearLayout
  32.                 android:orientation="vertical"
  33.                 android:layout_width="fill_parent"
  34.                 android:layout_height="wrap_content"
  35.                 style="?whiteBackground">
  36.  
  37.                 <TextView
  38.                     android:layout_width="fill_parent"
  39.                     android:layout_height="wrap_content"
  40.                     android:text="This is large text."
  41.                     style="?textLarge"/>
  42.  
  43.                 <TextView
  44.                     android:layout_width="fill_parent"
  45.                     android:layout_height="wrap_content"
  46.                     android:text="This is regular text."
  47.                     style="?textRegular"/>
  48.  
  49.                 <TextView
  50.                     android:layout_width="fill_parent"
  51.                     android:layout_height="wrap_content"
  52.                     android:text="@string/hello"
  53.                     style="?textRegular"/>
  54.  
  55.             </LinearLayout>
  56.  
  57.             <TextView
  58.                 android:layout_width="fill_parent"
  59.                 android:layout_height="wrap_content"
  60.                 android:text="List view below"
  61.                 style="?textSubheader"/>
  62.  
  63.  
  64.             <LinearLayout
  65.                 android:orientation="vertical"
  66.                 android:layout_width="fill_parent"
  67.                 android:layout_height="wrap_content"
  68.                 style="?whiteBackground">
  69.  
  70.                 <TextView
  71.                     android:layout_width="fill_parent"
  72.                     android:layout_height="wrap_content"
  73.                     android:text="List item 1."
  74.                     style="?listItem"/>
  75.  
  76.                 <View
  77.                     android:layout_width="fill_parent"
  78.                     android:layout_height="1sp"
  79.                     style="?listDivider"/>
  80.  
  81.                 <TextView
  82.                     android:layout_width="fill_parent"
  83.                     android:layout_height="wrap_content"
  84.                     android:text="List item 2."
  85.                     style="?listItem"/>
  86.  
  87.                 <View
  88.                     android:layout_width="fill_parent"
  89.                     android:layout_height="1sp"
  90.                     style="?listDivider"/>
  91.  
  92.                 <TextView
  93.                     android:layout_width="fill_parent"
  94.                     android:layout_height="wrap_content"
  95.                     android:text="List item 3."
  96.                     style="?listItem"/>
  97.                    
  98.                     <View
  99.                     android:layout_width="fill_parent"
  100.                     android:layout_height="1sp"
  101.                     style="?listDivider"/>
  102.  
  103.                 <TextView
  104.                     android:layout_width="fill_parent"
  105.                     android:layout_height="wrap_content"
  106.                     android:text="List item 3."
  107.                     style="?listItem"/>
  108.                    
  109.                     <View
  110.                     android:layout_width="fill_parent"
  111.                     android:layout_height="1sp"
  112.                     style="?listDivider"/>
  113.  
  114.                 <TextView
  115.                     android:layout_width="fill_parent"
  116.                     android:layout_height="wrap_content"
  117.                     android:text="List item 3."
  118.                     style="?listItem"/>
  119.  
  120.             </LinearLayout>
  121.  
  122.         </LinearLayout>
  123.  
  124.     </ScrollView>
  125.  
  126. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement