diff options
author | sjtufs <[email protected]> | 2013-09-01 05:57:40 +0800 |
---|---|---|
committer | sjtufs <[email protected]> | 2013-09-01 05:57:40 +0800 |
commit | 49d2e9d74fbf95e5b287dc8e9179e8d3d977a527 (patch) | |
tree | 57c672ed1bb809ed1bea8c852f61f464c5c1b74c /client/Piztor/res/layout/subscribe_item.xml | |
parent | 0410d0b9c6bb502f8467c3f2c62183e9a74e69fc (diff) |
stable version
Diffstat (limited to 'client/Piztor/res/layout/subscribe_item.xml')
-rw-r--r-- | client/Piztor/res/layout/subscribe_item.xml | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/client/Piztor/res/layout/subscribe_item.xml b/client/Piztor/res/layout/subscribe_item.xml index 902da5a..2d53865 100644 --- a/client/Piztor/res/layout/subscribe_item.xml +++ b/client/Piztor/res/layout/subscribe_item.xml @@ -4,33 +4,39 @@ android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal"> + <View + android:id="@+id/seperator" + android:layout_width="fill_parent" + android:layout_height="1.0px" + android:layout_alignParentTop="true" + android:layout_marginTop="10dip" + android:layout_marginBottom="10dip" + android:layout_marginLeft="20dip" + android:layout_marginRight="20dip" + android:background="#ffc0c3c4" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/textView1" + android:layout_below="@+id/seperator" android:textSize="20dip" android:layout_marginLeft="10dip" android:layout_alignParentLeft="true" android:text="company section"/> <Button - android:text="remove" + android:text="@string/remove" android:layout_width="100dip" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="10dip" + android:paddingTop="3dip" + android:paddingBottom="3dip" + android:layout_below="@+id/seperator" android:textColor="#FFFFFF" android:background="#DB4437" android:id="@+id/button_delete" android:textSize="20dip" /> - <View - android:layout_width="fill_parent" - android:layout_height="1.0px" - android:layout_below="@+id/button_delete" - android:layout_marginTop="20dip" - android:layout_marginBottom="20dip" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:background="#ffc0c3c4" /> + </RelativeLayout> |