2021-05-18 15:19:33 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout 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"
|
2021-05-18 15:19:33 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/dsl_settings_fragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2022-05-26 17:32:52 -03:00
|
|
|
<org.thoughtcrime.securesms.util.views.CircularProgressMaterialButton
|
2021-05-18 15:19:33 -04:00
|
|
|
android:id="@+id/timer_select_fragment_save"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2022-05-26 17:32:52 -03:00
|
|
|
app:circularProgressMaterialButton__label="@string/ExpireTimerSettingsFragment__save" />
|
2021-05-18 15:19:33 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|