diff options
Diffstat (limited to 'src/main/res/layout')
-rw-r--r-- | src/main/res/layout/activity_edit_account.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/main/res/layout/activity_edit_account.xml b/src/main/res/layout/activity_edit_account.xml index f4f01dea1..8a77f939a 100644 --- a/src/main/res/layout/activity_edit_account.xml +++ b/src/main/res/layout/activity_edit_account.xml @@ -57,6 +57,7 @@ app:riv_corner_radius="5dp" /> <LinearLayout + android:id="@+id/jid_password_box" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/avater" @@ -163,6 +164,35 @@ android:layout_marginTop="8dp" android:text="@string/register_account" /> </LinearLayout> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/jid_password_box" + android:orientation="vertical"> + + <Button + android:id="@+id/show_privacy_policy" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_gravity="center_horizontal" + android:layout_marginBottom="4dp" + android:layout_marginTop="4dp" + android:text="@string/show_privacy" + android:visibility="gone" /> + + <Button + android:id="@+id/show_terms_of_use" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_gravity="center_horizontal" + android:layout_marginBottom="4dp" + android:layout_marginTop="4dp" + android:text="@string/show_termsofuse" + android:visibility="gone" /> + </LinearLayout> </RelativeLayout> </android.support.v7.widget.CardView> |