2020-08-26 12:51:25 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2020-08-26 12:51:25 -03:00
|
|
|
android:id="@+id/conversation_requesting_banner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:background="@color/signal_background_tertiary"
|
2020-08-26 12:51:25 -03:00
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:text="@string/ConversationActivity_your_request_to_join_has_been_sent_to_the_group_admin"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:textColor="@color/signal_text_secondary" />
|
2020-08-26 12:51:25 -03:00
|
|
|
|
2022-06-15 10:01:41 -03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2020-08-26 12:51:25 -03:00
|
|
|
android:id="@+id/conversation_cancel_request"
|
2022-06-15 10:01:41 -03:00
|
|
|
style="@style/Signal.Widget.Button.Large.Tonal"
|
2020-08-26 12:51:25 -03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:text="@string/ConversationActivity_cancel_request" />
|
|
|
|
|
|
|
|
</LinearLayout>
|