diff options
author | saqura <saqura@saqura.eu> | 2015-10-02 22:00:11 +0200 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2015-10-06 16:23:05 +0200 |
commit | 403db3b0800ec0dcca5fd1f5c8d94ad1f8ee9e5d (patch) | |
tree | ed853d57dbee0a5716711ec566f742b93bf9b72b /src/main/res | |
parent | 32abc766898a5524c7e945adf64bd97ffb404c2b (diff) |
Show whether MAM is supported in MUCs
The conference details in "Advanced Mode" now indicate whether MAM is
supported by the conference server.
Diffstat (limited to '')
-rw-r--r-- | src/main/res/layout/activity_muc_details.xml | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/src/main/res/layout/activity_muc_details.xml b/src/main/res/layout/activity_muc_details.xml index 6edbb706..1a88424e 100644 --- a/src/main/res/layout/activity_muc_details.xml +++ b/src/main/res/layout/activity_muc_details.xml @@ -87,7 +87,7 @@ android:id="@+id/muc_conference_type" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="@string/private_conference" + android:text="@string/private_conference" android:layout_centerVertical="true" android:textColor="@color/black87" android:textSize="?attr/TextSizeBody" @@ -107,6 +107,35 @@ android:src="?attr/icon_settings"/> </RelativeLayout> + <TableLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:id="@+id/muc_info_more" + android:stretchColumns="1" + android:visibility="gone"> + + <TableRow + android:layout_width="fill_parent" + android:layout_height="match_parent"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/server_info_mam" + android:textColor="@color/black87" + android:textSize="?attr/TextSizeBody" /> + + <TextView + android:id="@+id/muc_info_mam" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="right" + android:textColor="@color/black87" + android:textSize="?attr/TextSizeBody" /> + </TableRow> + + </TableLayout> + <TextView android:id="@+id/details_account" android:layout_width="wrap_content" |