non functional muc edit button
After Width: | Height: | Size: 240 B |
After Width: | Height: | Size: 247 B |
After Width: | Height: | Size: 167 B |
After Width: | Height: | Size: 168 B |
After Width: | Height: | Size: 264 B |
After Width: | Height: | Size: 273 B |
After Width: | Height: | Size: 368 B |
After Width: | Height: | Size: 391 B |
After Width: | Height: | Size: 477 B |
After Width: | Height: | Size: 504 B |
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="?attr/color_background_primary"
|
||||
|
|
|
@ -60,23 +60,67 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/muc_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_toStartOf="@+id/edit_muc_name_button"
|
||||
android:textAppearance="@style/TextAppearance.Conversations.Title"/>
|
||||
<TextView
|
||||
android:id="@+id/muc_subject"
|
||||
<LinearLayout
|
||||
android:id="@+id/muc_display"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentStart="true"
|
||||
android:autoLink="web"
|
||||
android:layout_below="@+id/muc_title"
|
||||
android:layout_toStartOf="@+id/edit_muc_name_button"
|
||||
android:textAppearance="@style/TextAppearance.Conversations.Subhead"/>
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/muc_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="@style/TextAppearance.Conversations.Title"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/muc_subject"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:autoLink="web"
|
||||
android:textAppearance="@style/TextAppearance.Conversations.Subhead"/>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/muc_editor"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_toStartOf="@+id/edit_muc_name_button"
|
||||
android:orientation="vertical"
|
||||
android:visibility="gone">
|
||||
|
||||
<android.support.design.widget.TextInputLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
|
||||
app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint">
|
||||
|
||||
<android.support.design.widget.TextInputEditText
|
||||
android:id="@+id/muc_edit_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/group_chat_name"
|
||||
android:textAppearance="@style/Widget.Conversations.EditText"/>
|
||||
</android.support.design.widget.TextInputLayout>
|
||||
|
||||
<android.support.design.widget.TextInputLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
|
||||
app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint">
|
||||
|
||||
<android.support.design.widget.TextInputEditText
|
||||
android:id="@+id/muc_edit_subject"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/topic"
|
||||
android:textAppearance="@style/Widget.Conversations.EditText"/>
|
||||
</android.support.design.widget.TextInputLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/edit_muc_name_button"
|
||||
|
@ -152,6 +196,7 @@
|
|||
</TableRow>
|
||||
|
||||
</TableLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/jid"
|
||||
android:layout_width="wrap_content"
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
style="@style/Widget.Conversations.EditText"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/edit_subject_hint"
|
||||
android:hint="@string/topic"
|
||||
android:nextFocusDown="@+id/subject"
|
||||
android:nextFocusUp="@+id/subject"/>
|
||||
</android.support.design.widget.TextInputLayout>
|
||||
|
|
|
@ -56,6 +56,7 @@
|
|||
<attr name="icon_download" format="reference"/>
|
||||
<attr name="icon_edit" format="reference"/>
|
||||
<attr name="icon_edit_body" format="reference"/>
|
||||
<attr name="icon_save" format="reference"/>
|
||||
<attr name="icon_done" format="reference"/>
|
||||
<attr name="icon_group" format="reference"/>
|
||||
<attr name="icon_new" format="reference"/>
|
||||
|
|
|
@ -228,7 +228,7 @@
|
|||
<string name="delete_bookmark">Delete bookmark</string>
|
||||
<string name="bookmark_already_exists">This bookmark already exists</string>
|
||||
<string name="action_edit_subject">Edit group chat subject</string>
|
||||
<string name="edit_subject_hint">The subject of this group chat</string>
|
||||
<string name="topic">Topic</string>
|
||||
<string name="joining_conference">Joining group chat…</string>
|
||||
<string name="leave">Leave</string>
|
||||
<string name="contact_added_you">Contact added you to contact list</string>
|
||||
|
@ -721,4 +721,5 @@
|
|||
<string name="only_the_owner_can_change_group_chat_avatar">Only the owner can change group chat avatar</string>
|
||||
<string name="contact_name">Contact name</string>
|
||||
<string name="nickname">Nickname</string>
|
||||
<string name="group_chat_name">Name</string>
|
||||
</resources>
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
<item type="reference" name="icon_download">@drawable/ic_file_download_white_24dp</item>
|
||||
<item type="reference" name="icon_edit">@drawable/ic_edit_white_24dp</item>
|
||||
<item type="reference" name="icon_edit_body">@drawable/ic_edit_black_24dp</item>
|
||||
<item type="reference" name="icon_save">@drawable/ic_save_black_24dp</item>
|
||||
<item type="reference" name="icon_done">@drawable/ic_done_black_24dp</item>
|
||||
<item type="reference" name="icon_group">@drawable/ic_group_white_24dp</item>
|
||||
<item type="reference" name="icon_new">@drawable/ic_add_white_24dp</item>
|
||||
|
@ -163,6 +164,7 @@
|
|||
<item type="reference" name="icon_download">@drawable/ic_file_download_white_24dp</item>
|
||||
<item type="reference" name="icon_edit">@drawable/ic_edit_white_24dp</item>
|
||||
<item type="reference" name="icon_edit_body">@drawable/ic_edit_white_24dp</item>
|
||||
<item type="reference" name="icon_save">@drawable/ic_save_white_24dp</item>
|
||||
<item type="reference" name="icon_done">@drawable/ic_done_black_24dp</item>
|
||||
<item type="reference" name="icon_group">@drawable/ic_group_white_24dp</item>
|
||||
<item type="reference" name="icon_new">@drawable/ic_add_white_24dp</item>
|
||||
|
|