2020-09-09 10:22:22 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2020-09-09 10:22:22 -04: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="match_parent"
|
|
|
|
android:paddingStart="32dp"
|
|
|
|
android:paddingEnd="32dp"
|
|
|
|
android:paddingTop="20dp"
|
|
|
|
android:paddingBottom="20dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/client_deprecated_update_button"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:srcCompat="@drawable/ic_signal_logo_large" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="27dp"
|
|
|
|
android:text="@string/ClientDeprecatedActivity_update_signal"
|
|
|
|
style="@style/Signal.Text.Headline"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:gravity="center" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:text="@string/ClientDeprecatedActivity_this_version_of_the_app_is_no_longer_supported"
|
|
|
|
style="@style/Signal.Text.Body"
|
|
|
|
android:gravity="center" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2022-05-26 17:32:52 -03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2020-09-09 10:22:22 -04:00
|
|
|
android:id="@+id/client_deprecated_update_button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/ClientDeprecatedActivity_update"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.Button.Large.Primary"
|
2020-09-09 10:22:22 -04:00
|
|
|
app:layout_constraintBottom_toTopOf="@id/client_deprecated_dont_update_button"/>
|
|
|
|
|
2022-05-26 17:32:52 -03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2020-09-09 10:22:22 -04:00
|
|
|
android:id="@+id/client_deprecated_dont_update_button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/ClientDeprecatedActivity_dont_update"
|
2022-05-26 17:32:52 -03:00
|
|
|
style="@style/Signal.Widget.Button.Large.Secondary"
|
|
|
|
android:textColor="@color/low_priority_button_text_color"
|
2020-09-09 10:22:22 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|