Advertisement
Guest User

main.xml

a guest
Jul 13th, 2011
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:orientation="vertical" android:layout_width="fill_parent"
  4.     android:layout_height="fill_parent">
  5.     <ScrollView android:layout_height="wrap_content"
  6.         android:layout_width="match_parent" android:id="@+id/scrollView1">
  7.         <LinearLayout android:id="@+id/linearLayout1"
  8.             android:layout_width="match_parent" android:layout_height="match_parent"></LinearLayout>
  9.     </ScrollView>
  10.     <TextView android:layout_width="fill_parent"
  11.         android:layout_height="wrap_content" android:text="@string/l_active" />
  12.     <Spinner android:id="@+id/spinner1" android:layout_height="wrap_content"
  13.         android:layout_width="match_parent"></Spinner>
  14.     <TextView android:text="@string/l_Lang" android:id="@+id/textView1"
  15.         android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
  16.     <Spinner android:layout_width="match_parent"
  17.         android:layout_height="wrap_content" android:id="@+id/spinner2"></Spinner>
  18.     <TextView android:layout_width="wrap_content"
  19.         android:textAppearance="?android:attr/textAppearanceSmall" android:id="@+id/textView2"
  20.         android:layout_height="wrap_content" android:text="@string/l_TTS"></TextView>
  21.     <EditText android:layout_width="match_parent" android:text="@string/e_defaultT"
  22.         android:id="@+id/editText1" android:layout_height="wrap_content">
  23.         <requestFocus></requestFocus>
  24.     </EditText>
  25.     <CheckBox android:id="@+id/checkBox1" android:layout_width="wrap_content"
  26.         android:checked="true" android:layout_height="wrap_content"
  27.         android:text="@string/cb_nosound"></CheckBox>
  28.     <CheckBox android:text="@string/cb_pumpVol" android:id="@+id/checkBox2"
  29.         android:layout_width="wrap_content" android:layout_height="wrap_content"
  30.         android:checked="true"></CheckBox>
  31.     <Button android:layout_width="match_parent" android:id="@+id/button1"
  32.         android:text="@string/b_Save" android:layout_height="wrap_content"></Button>
  33. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement