diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2014-03-03 05:01:02 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2014-03-03 05:01:02 +0100 |
commit | c609eefefac5097c7c40a9f1b8741e9634da316f (patch) | |
tree | 53363dfbab46d84e81b8b95f49e586374dc358f0 /res/layout/fragment_conversation.xml | |
parent | 2ab6cb0ada6370e6ea83a73e0a6a39ea3ff90715 (diff) |
api changes. muc options
Diffstat (limited to '')
-rw-r--r-- | res/layout/fragment_conversation.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/res/layout/fragment_conversation.xml b/res/layout/fragment_conversation.xml index cea2be1f..dabce457 100644 --- a/res/layout/fragment_conversation.xml +++ b/res/layout/fragment_conversation.xml @@ -62,6 +62,36 @@ android:layout_width="fill_parent" android:orientation="vertical" > + + <LinearLayout + android:id="@+id/muc_error" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:background="@drawable/redbackground" + android:orientation="vertical" + android:visibility="gone" + > + + <TextView + android:id="@+id/muc_error_msg" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textColor="#eee" + android:textStyle="bold" + android:padding="8dp" + android:textSize="20sp"/> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Click to edit conference details" + android:textColor="#eee" + android:paddingLeft="8dp" + android:paddingBottom="8dp" + android:textSize="14sp"/> + + </LinearLayout> + + <LinearLayout android:id="@+id/new_fingerprint" android:layout_width="fill_parent" |