diff options
author | Teddy <[email protected]> | 2013-08-31 12:45:35 +0800 |
---|---|---|
committer | Teddy <[email protected]> | 2013-08-31 12:45:35 +0800 |
commit | bb24f90c879b4a0216d592dce18590d841da7289 (patch) | |
tree | cc42711a8c39d3ed905290b38385f0eb559b4aef /client/Piztor/res/layout/subscribe_settings.xml | |
parent | 325eea0b19a5f9cd4e54947d2ad9cb5e9d2169b3 (diff) | |
parent | 69a911d88c0e41f2aafbd6d88d53ea430890b3cd (diff) |
Merge branch 'master' of github.com:Determinant/piztor
Diffstat (limited to 'client/Piztor/res/layout/subscribe_settings.xml')
-rw-r--r-- | client/Piztor/res/layout/subscribe_settings.xml | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/client/Piztor/res/layout/subscribe_settings.xml b/client/Piztor/res/layout/subscribe_settings.xml new file mode 100644 index 0000000..c27e3c8 --- /dev/null +++ b/client/Piztor/res/layout/subscribe_settings.xml @@ -0,0 +1,66 @@ +<?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" + > + <RelativeLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:gravity="center" + android:orientation="horizontal"> + <EditText + android:layout_width="120dip" + android:layout_height="wrap_content" + android:layout_alignParentLeft="true" + android:layout_marginLeft="10dip" + android:textSize="20dip" + android:hint="company" + android:phoneNumber="true" + android:id="@+id/subscribe_company"/> + <EditText + android:layout_width="120dip" + android:layout_height="wrap_content" + android:layout_marginLeft="10dip" + android:layout_toRightOf="@+id/subscribe_company" + android:textSize="20dip" + android:hint="section" + android:phoneNumber="true" + android:id="@+id/subscribe_section"/> + <Button + android:layout_width="100dip" + android:layout_height="wrap_content" + android:layout_alignParentRight="true" + android:layout_marginRight="10dip" + android:text="add" + android:textColor="#FFFFFF" + android:background="#0F9D58" + android:textSize="20dip" + android:padding="10dip" + android:id="@+id/button_add"/> + </RelativeLayout> + + <LinearLayout + android:id="@+id/linearLayout1" + android:orientation="vertical" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + > + <ListView + android:id="@+id/listView1" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_weight="0.69" + android:focusable="true"> + </ListView> + </LinearLayout> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:id="@+id/textView1" + android:text="TextView" + android:layout_alignParentBottom="true" + android:layout_centerHorizontal="true" + android:layout_marginBottom="10dp"/> +</LinearLayout> |