2014-03-04 02:51:01 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-03 05:01:02 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:background="@color/secondarybackground">
|
2014-03-03 05:01:02 +01:00
|
|
|
|
2014-03-04 02:51:01 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
2014-03-14 23:32:48 +01:00
|
|
|
<TextView
|
2014-03-04 02:51:01 +01:00
|
|
|
style="@style/sectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-14 23:32:48 +01:00
|
|
|
android:padding="8dp"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:text="@string/muc_details_conference"
|
|
|
|
android:textColor="@color/primarytext"/>
|
2014-03-14 23:32:48 +01:00
|
|
|
<RelativeLayout
|
2014-03-04 02:51:01 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:background="@color/primarybackground" >
|
2014-03-14 23:32:48 +01:00
|
|
|
|
2014-03-04 02:51:01 +01:00
|
|
|
|
|
|
|
<EditText
|
2014-03-14 23:32:48 +01:00
|
|
|
android:id="@+id/muc_subject"
|
2014-03-04 02:51:01 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
2014-03-14 23:32:48 +01:00
|
|
|
android:layout_toLeftOf="@+id/muc_edit_subject"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:background="@color/primarybackground"
|
2014-03-04 02:51:01 +01:00
|
|
|
android:ems="10"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:hint="@string/muc_details_conference_subject"
|
2014-03-31 19:28:03 +02:00
|
|
|
android:inputType="textAutoComplete"
|
2014-03-04 02:51:01 +01:00
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingTop="12dp" />
|
|
|
|
|
|
|
|
<ImageButton
|
2014-03-14 23:32:48 +01:00
|
|
|
android:id="@+id/muc_edit_subject"
|
2014-03-04 02:51:01 +01:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:src="@drawable/ic_action_edit" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/muc_jabberid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:singleLine="true"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:textSize="14sp"
|
|
|
|
android:textColor="@color/primarytext"/>
|
2014-03-04 02:51:01 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/sectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-14 23:32:48 +01:00
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingTop="8dp"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:text="@string/muc_details_your_nickname"
|
|
|
|
android:textColor="@color/primarytext"/>
|
2014-03-14 23:32:48 +01:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:background="@color/primarybackground" >
|
2014-03-14 23:32:48 +01:00
|
|
|
|
2014-03-04 02:51:01 +01:00
|
|
|
|
2014-03-14 23:32:48 +01:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/muc_your_nick"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@+id/muc_edit_nick"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:background="@color/primarybackground"
|
2014-03-14 23:32:48 +01:00
|
|
|
android:ems="10"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:hint="@string/muc_details_your_nickname"
|
2014-03-14 23:32:48 +01:00
|
|
|
android:inputType="textEmailAddress"
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingTop="12dp" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/muc_edit_nick"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:src="@drawable/ic_action_edit" />
|
|
|
|
</RelativeLayout>
|
2014-03-04 02:51:01 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/muc_role"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:singleLine="true"
|
2014-07-04 16:13:52 +02:00
|
|
|
android:textSize="14sp"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:textColor="@color/primarytext"/>
|
2014-03-14 23:32:48 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/muc_more_details"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
2014-03-04 02:51:01 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/muc_participants_header"
|
|
|
|
style="@style/sectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingTop="8dp"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:text="@string/muc_details_other_members"
|
|
|
|
android:textColor="@color/primarytext"/>
|
2014-03-04 02:51:01 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/muc_members"
|
|
|
|
android:layout_width="fill_parent"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:layout_height="0dp"
|
2014-03-04 02:51:01 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:divider="?android:dividerHorizontal"
|
|
|
|
android:showDividers="middle"
|
|
|
|
>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2014-03-03 05:01:02 +01:00
|
|
|
|
2014-03-15 06:20:59 +01:00
|
|
|
<Button
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:id="@+id/invite"
|
|
|
|
style="?android:attr/buttonStyleSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/invite_contacts"
|
|
|
|
android:layout_gravity="center_horizontal"/>
|
2014-03-03 05:01:02 +01:00
|
|
|
</LinearLayout>
|
2014-03-04 02:51:01 +01:00
|
|
|
</ScrollView>
|