SubwayTooter-Android-App/app/src/main/res/layout/dlg_confirm.xml

54 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TextView
android:id="@+id/tvMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:layout_marginStart="12dp"
android:layout_marginTop="12dp"
android:textColor="?android:attr/textColorPrimary"
android:textSize="16sp"
tools:text="message...."
/>
<CheckBox
android:id="@+id/cbSkipNext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:layout_marginStart="12dp"
android:layout_marginTop="8dp"
android:text="@string/dont_confirm_again"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/llMuteDuration"
android:layout_marginTop="8dp"
android:layout_marginEnd="12dp"
android:layout_marginStart="12dp"
android:visibility="gone"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/duration"
/>
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/spMuteDuration"
android:minHeight="40dp"
/>
</LinearLayout>
</LinearLayout>