82 lines
3.1 KiB
XML
82 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
app:cardCornerRadius="12dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingStart="24dp"
|
|
android:paddingEnd="24dp"
|
|
android:paddingTop="24dp"
|
|
android:paddingBottom="12dp">
|
|
|
|
<TextView
|
|
android:id="@+id/title_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
style="@style/TextViewMaterial.DialogTitle"
|
|
android:text="@string/extra_item"
|
|
android:gravity="center_horizontal"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="24dp"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16sp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:gravity="center_horizontal"
|
|
style="@style/AppTheme.NewMaterial.Text"
|
|
android:text="@string/scan_item"/>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button_no"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
style="@style/Button.DangerOutline"
|
|
app:strokeColor="@color/red_400"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
android:layout_gravity="center_horizontal"
|
|
android:text="@string/abort"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
|
|
</layout> |