2021-06-24 13:52:54 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-02-09 19:07:16 -05:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-06-24 13:52:54 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-02-09 19:07:16 -05:00
|
|
|
android:layout_width="match_parent"
|
2021-06-24 13:52:54 -03:00
|
|
|
android:layout_height="wrap_content"
|
2022-02-09 19:07:16 -05:00
|
|
|
android:layout_gravity="center_horizontal">
|
2021-06-24 13:52:54 -03:00
|
|
|
|
2021-11-03 11:33:23 -04:00
|
|
|
<LinearLayout
|
2022-02-09 19:07:16 -05:00
|
|
|
android:id="@+id/button_strip"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:baselineAligned="false"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingTop="24dp"
|
|
|
|
android:paddingBottom="16dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/button_strip_message_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginStart="2dp"
|
|
|
|
android:layout_marginEnd="2dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/message"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.ImageView.ActionButton"
|
2022-02-09 19:07:16 -05:00
|
|
|
android:contentDescription="@string/ConversationSettingsFragment__message"
|
2022-05-27 14:58:35 -03:00
|
|
|
app:srcCompat="@drawable/ic_chat_message_24" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/message_label"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.TextView.ActionButton"
|
|
|
|
android:text="@string/ConversationSettingsFragment__message" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/button_strip_video_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginStart="2dp"
|
|
|
|
android:layout_marginEnd="2dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/start_video"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.ImageView.ActionButton"
|
2022-02-09 19:07:16 -05:00
|
|
|
android:contentDescription="@string/ConversationSettingsFragment__start_video_call"
|
2022-05-26 17:32:52 -03:00
|
|
|
app:srcCompat="@drawable/ic_video_call_24" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/start_video_label"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.TextView.ActionButton"
|
|
|
|
android:text="@string/ConversationSettingsFragment__video" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/button_strip_audio_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginStart="2dp"
|
|
|
|
android:layout_marginEnd="2dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/start_audio"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.ImageView.ActionButton"
|
2022-02-09 19:07:16 -05:00
|
|
|
android:contentDescription="@string/ConversationSettingsFragment__start_audio_call"
|
2022-05-26 17:32:52 -03:00
|
|
|
app:srcCompat="@drawable/ic_phone_right_24" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/start_audio_label"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.TextView.ActionButton"
|
|
|
|
android:text="@string/ConversationSettingsFragment__audio" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/button_strip_mute_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginStart="2dp"
|
|
|
|
android:layout_marginEnd="2dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/mute"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.ImageView.ActionButton"
|
2022-02-09 19:07:16 -05:00
|
|
|
android:contentDescription="@string/ConversationSettingsFragment__mute"
|
2022-05-26 17:32:52 -03:00
|
|
|
app:srcCompat="@drawable/ic_bell_24" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mute_label"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.TextView.ActionButton"
|
|
|
|
android:text="@string/ConversationSettingsFragment__mute" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/button_strip_search_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginStart="2dp"
|
|
|
|
android:layout_marginEnd="2dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/search"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.ImageView.ActionButton"
|
2022-02-09 19:07:16 -05:00
|
|
|
android:contentDescription="@string/ConversationSettingsFragment__search"
|
2022-05-26 17:32:52 -03:00
|
|
|
app:srcCompat="@drawable/ic_search_24" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_label"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.TextView.ActionButton"
|
|
|
|
android:text="@string/ConversationSettingsFragment__search" />
|
2022-02-09 19:07:16 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
2021-11-03 11:33:23 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|
2022-02-09 19:07:16 -05:00
|
|
|
</FrameLayout>
|