aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2020-09-19 17:19:30 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2020-09-19 17:30:19 +0530
commit5d5a068591e16a97f6cbbf6b75ecc2e5aed5bbf3 (patch)
treeaca934bcb5ae180ace76e4d9b877b7d489094c1a /app/src/main/res
parentafbe29e7dae748c10e9446da86431c0072a3c89e (diff)
BasicBottomSheet: init
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/basic_bottom_sheet.xml61
1 files changed, 61 insertions, 0 deletions
diff --git a/app/src/main/res/layout/basic_bottom_sheet.xml b/app/src/main/res/layout/basic_bottom_sheet.xml
new file mode 100644
index 00000000..9e05aca4
--- /dev/null
+++ b/app/src/main/res/layout/basic_bottom_sheet.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?><!--
+ ~ Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
+ ~ SPDX-License-Identifier: GPL-3.0-only
+ -->
+
+<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:paddingBottom="24dp">
+
+ <com.google.android.material.textview.MaterialTextView
+ android:id="@+id/bottom_sheet_title"
+ style="@style/TextAppearance.MaterialComponents.Headline6"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="8dp"
+ android:layout_marginTop="8dp"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent"
+ tools:text="Bottom sheet title" />
+
+ <com.google.android.material.textview.MaterialTextView
+ android:id="@+id/bottom_sheet_message"
+ style="@style/TextAppearance.MaterialComponents.Body1"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="8dp"
+ android:layout_marginTop="16dp"
+ android:layout_marginEnd="8dp"
+ app:layout_constraintTop_toBottomOf="@id/bottom_sheet_title"
+ tools:text="A long body of text that serves as the bottom sheet message" />
+
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/bottom_sheet_cancel_button"
+ style="@style/AppTheme.OutlinedButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="24dp"
+ android:layout_marginEnd="8dp"
+ android:text="@string/dialog_cancel"
+ android:visibility="gone"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/bottom_sheet_message"
+ tools:visibility="visible" />
+
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/bottom_sheet_ok_button"
+ style="@style/AppTheme.OutlinedButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="24dp"
+ android:layout_marginEnd="8dp"
+ android:text="@string/dialog_ok"
+ android:visibility="gone"
+ app:layout_constraintEnd_toStartOf="@id/bottom_sheet_cancel_button"
+ app:layout_constraintTop_toBottomOf="@id/bottom_sheet_message"
+ tools:visibility="visible" />
+
+</androidx.constraintlayout.widget.ConstraintLayout>