summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview_example/src/main/res/layout/activity_settings.xml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/android/geckoview_example/src/main/res/layout/activity_settings.xml')
-rw-r--r--mobile/android/geckoview_example/src/main/res/layout/activity_settings.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/mobile/android/geckoview_example/src/main/res/layout/activity_settings.xml b/mobile/android/geckoview_example/src/main/res/layout/activity_settings.xml
new file mode 100644
index 0000000000..d6c4025ea6
--- /dev/null
+++ b/mobile/android/geckoview_example/src/main/res/layout/activity_settings.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <androidx.appcompat.widget.Toolbar
+ android:id="@+id/toolbar"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="@color/colorBackgroundDark"
+ app:theme="@style/ToolBarStyle"
+ android:elevation="4dp"/>
+
+ <FrameLayout
+ android:id="@+id/container"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:background="@color/colorPrimaryDark"/>
+
+</LinearLayout>