diff options
author | sjtufs <[email protected]> | 2013-09-01 07:30:34 +0800 |
---|---|---|
committer | sjtufs <[email protected]> | 2013-09-01 07:30:34 +0800 |
commit | 46dad6a4660d968a4806b108659fad1e43548294 (patch) | |
tree | a4ba97ce7f690ce5dfebab3051eeace86e50c8c3 /client/Piztor/res | |
parent | 49d2e9d74fbf95e5b287dc8e9179e8d3d977a527 (diff) |
update, close to deadline
Diffstat (limited to 'client/Piztor/res')
-rw-r--r-- | client/Piztor/res/layout/activity_settings.xml | 61 | ||||
-rw-r--r-- | client/Piztor/res/values/strings.xml | 7 |
2 files changed, 53 insertions, 15 deletions
diff --git a/client/Piztor/res/layout/activity_settings.xml b/client/Piztor/res/layout/activity_settings.xml index e1712aa..36bacf3 100644 --- a/client/Piztor/res/layout/activity_settings.xml +++ b/client/Piztor/res/layout/activity_settings.xml @@ -87,24 +87,22 @@ android:layout_marginLeft="20dip" android:layout_marginRight="20dip" android:background="#ffc0c3c4" /> - - <TextView - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:layout_gravity="center" - android:gravity="center" - android:textSize="30dip" - android:textColor="@android:color/white" - android:text="@string/subscribe_info"/> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center" android:gravity="center" - android:layout_marginTop="20dip" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" + android:layout_marginTop="10dip" android:orientation="horizontal"> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:gravity="center" + android:textSize="30dip" + android:textColor="@android:color/white" + android:text="@string/subscribe_info"/> + <Button android:id="@+id/settings_btn_subscribe" android:layout_width="wrap_content" @@ -123,6 +121,45 @@ android:layout_marginRight="20dip" android:background="#ffc0c3c4" /> <LinearLayout + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:gravity="center"> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="20dip" + android:text="@string/colormode" + android:textColor="#FFFFFF"/> + <RadioGroup + android:id="@+id/radioGroup" + android:contentDescription="@string/colormode" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginLeft="10dip" + android:orientation="horizontal"> + <RadioButton + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:id="@+id/show_by_team" + android:text="@string/show_team" + android:checked="true"/> + <RadioButton + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:id="@+id/show_by_sex" + android:text="@string/show_sex"/> + </RadioGroup> + </LinearLayout> + <View + android:layout_width="fill_parent" + android:layout_height="1.0px" + android:layout_marginTop="20dip" + android:layout_marginBottom="20dip" + android:layout_marginLeft="20dip" + android:layout_marginRight="20dip" + android:background="#ffc0c3c4" /> + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginLeft="50dip" diff --git a/client/Piztor/res/values/strings.xml b/client/Piztor/res/values/strings.xml index 7cf728c..82132ed 100644 --- a/client/Piztor/res/values/strings.xml +++ b/client/Piztor/res/values/strings.xml @@ -9,10 +9,10 @@ <string name="fetch">获取</string> <string name="checkin">签到</string> <string name="focus">聚焦</string> - <string name="show_sex">Show sex: </string> + <string name="show_sex">按性别</string> <string name="male">Male</string> <string name="female">Female</string> - <string name="show_team">Show team: </string> + <string name="show_team">按班级</string> <string name="all">All</string> <string name="mine">Mine</string> <string name="title_activity_login">Login</string> @@ -34,9 +34,10 @@ <string name="company">连队</string> <string name="section">班级</string> <string name="add">添加</string> - <string name="GPSrefreshrate">GPS刷新率</string> + <string name="GPSrefreshrate">GPS刷新率 每</string> <string name="old_password">旧密码</string> <string name="new_password">新密码</string> <string name="submit">提交</string> + <string name="colormode">着色方式</string> </resources> |