diff options
Diffstat (limited to 'app/src/main/res/layout/scrollable_dialog.xml')
-rw-r--r-- | app/src/main/res/layout/scrollable_dialog.xml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/app/src/main/res/layout/scrollable_dialog.xml b/app/src/main/res/layout/scrollable_dialog.xml deleted file mode 100644 index 29b84ee4b..000000000 --- a/app/src/main/res/layout/scrollable_dialog.xml +++ /dev/null @@ -1,37 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout - xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:orientation="vertical"> - - <ScrollView - android:id="@+id/content" - android:layout_width="match_parent" - android:layout_height="0dp" - android:layout_weight="1" /> - - <LinearLayout - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:gravity="end" - android:orientation="horizontal" - android:paddingHorizontal="32dp" - android:paddingVertical="16dp" - style="?android:attr/buttonBarStyle"> - - <Button - android:id="@+id/negativeButton" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - style="?android:attr/buttonBarButtonStyle" /> - - <Button - android:id="@+id/positiveButton" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - style="?android:attr/buttonBarButtonStyle" /> - - </LinearLayout> - -</LinearLayout> |