diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-01-08 17:17:36 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-01-08 17:17:36 +0100 |
commit | 9b20223655c28cbe3fcd10617514648383d8ad31 (patch) | |
tree | e229182e5943aeafdcce1f6b581475f245337f3f /src/main/res | |
parent | 65be0f1b2dd071c6629f36cc6ad392c5100b8f26 (diff) |
Fixes FS#107, Implements FS#77
Show the number of online resources in account view and enable show resources by clicking on the account jid
Diffstat (limited to 'src/main/res')
-rw-r--r-- | src/main/res/layout/activity_edit_account.xml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/main/res/layout/activity_edit_account.xml b/src/main/res/layout/activity_edit_account.xml index 9c951afd..0c9809bc 100644 --- a/src/main/res/layout/activity_edit_account.xml +++ b/src/main/res/layout/activity_edit_account.xml @@ -37,7 +37,8 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" - android:layout_toRightOf="@+id/avater"> + android:layout_toRightOf="@+id/avater" + android:id="@+id/editAccountBoxes"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -103,6 +104,22 @@ android:textColorHint="@color/secondaryText" android:textSize="?attr/TextSizeBody" /> </LinearLayout> + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:layout_toRightOf="@+id/avater" + android:id="@+id/displayAccountFrame" + android:visibility="gone"> + <TextView + android:id="@+id/detailsAccountJid" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/account_settings_example_jabber_id" + android:textColor="@color/primaryText" + android:textSize="?attr/TextSizeHeadline" + android:textStyle="bold" /> + </LinearLayout> </RelativeLayout> <LinearLayout |