2021-01-08 10:23:46 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2021-01-08 10:23:46 -05:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="24dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
app:srcCompat="@drawable/chat_session_refresh_banner" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:text="@string/DecryptionFailedDialog_chat_session_refreshed"
|
|
|
|
style="@style/Signal.Text.Headline"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:textSize="20sp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/DecryptionFailedDialog_signal_uses_end_to_end_encryption"
|
|
|
|
style="@style/Signal.Text.Body"/>
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|