33
|
+ android:textColor="@color/black"
|
|
34
|
+ android:layout_marginLeft="24dp"
|
|
35
|
+ android:textSize="18sp" />
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+ <TextView
|
|
39
|
+ android:id="@+id/tv_pop_delete_hint"
|
|
40
|
+ android:layout_width="match_parent"
|
|
41
|
+ android:layout_height="wrap_content"
|
|
42
|
+ android:layout_marginTop="56dp"
|
|
43
|
+ android:layout_marginLeft="24dp"
|
|
44
|
+ android:text="@string/exit_group_hint"
|
|
45
|
+ android:textColor="@color/grey"
|
|
46
|
+ android:textSize="16sp" />
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+ <LinearLayout
|
|
51
|
+ android:layout_width="match_parent"
|
|
52
|
+ android:layout_height="wrap_content"
|
|
53
|
+ android:layout_alignParentBottom="true"
|
|
54
|
+ android:paddingBottom="14dp"
|
|
55
|
+ android:gravity="center"
|
|
56
|
+ android:orientation="horizontal">
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+ <Button
|
|
60
|
+ android:id="@+id/btn_cancel_delete"
|
|
61
|
+ android:layout_width="120dp"
|
|
62
|
+ android:layout_height="36dp"
|
|
63
|
+ android:gravity="center"
|
|
64
|
+ android:textColor="@color/dark_grey"
|
|
65
|
+ android:background="@drawable/pop_btn_cancel_selector"
|
|
66
|
+ android:text="@string/cancel"
|
|
67
|
+ android:textSize="16sp" />
|
|
68
|
+
|
|
69
|
+ <Button
|
|
70
|
+ android:id="@+id/btn_exit_group_confirm"
|
|
71
|
+ android:layout_width="120dp"
|
|
72
|
+ android:layout_height="36dp"
|
|
73
|
+ android:gravity="center"
|
|
74
|
+ android:textColor="@color/white"
|
|
75
|
+ android:layout_marginLeft="8dp"
|
|
76
|
+ android:background="@drawable/pop_btn_ok_selector"
|
|
77
|
+ android:text="@string/ok"
|
|
78
|
+ android:textSize="16sp" />
|
|
79
|
+
|
|
80
|
+ </LinearLayout>
|
|
81
|
+
|
|
82
|
+ </RelativeLayout>
|
|
83
|
+ </LinearLayout>
|
|
84
|
+ </RelativeLayout>
|
|
85
|
+
|
|
86
|
+</RelativeLayout>
|
|
|
@@ -70,6 +70,9 @@
|
70
|
70
|
<string name="delete_group_member">删除群成员</string>
|
71
|
71
|
|
72
|
72
|
<string name="delete_member_hint">删除后将不再能看到群内照片</string>
|
|
73
|
+
|
|
74
|
+ <string name="exit_group_hint">退出群后将不再能看到群内照片</string>
|
|
75
|
+
|
73
|
76
|
<string name="delete_member_processing">成员删除进行中</string>
|
74
|
77
|
|
75
|
78
|
<string name="delete_member_success">成员删除成功</string>
|
|
|
@@ -266,4 +269,6 @@
|
266
|
269
|
<string name="no_photo_in_group">暂无照片</string>
|
267
|
270
|
|
268
|
271
|
<string name="photo_in_group">有%d张照片</string>
|
|
272
|
+
|
|
273
|
+ <string name="exit_group_confirm">群退出提示</string>
|
269
|
274
|
</resources>
|