2018-06-07 22:54:27 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-01-24 15:20:12 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-06-13 22:53:41 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-06-07 22:54:27 +02:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/unlock"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:text="@string/unlock_settings" />
|
2016-06-13 22:53:41 +02:00
|
|
|
|
2020-12-17 12:07:34 +01:00
|
|
|
<androidx.core.widget.NestedScrollView
|
2021-01-24 15:20:12 +01:00
|
|
|
android:id="@+id/main_layout"
|
2016-06-13 22:53:41 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-12-17 12:07:34 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2016-06-15 21:47:26 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2021-01-24 15:20:12 +01:00
|
|
|
android:id="@+id/categories"
|
2016-06-13 22:53:41 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-07 22:54:27 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2018-06-24 15:13:06 +02:00
|
|
|
android:padding="16dp" />
|
2020-12-17 12:07:34 +01:00
|
|
|
</androidx.core.widget.NestedScrollView>
|
2018-06-07 22:54:27 +02:00
|
|
|
</LinearLayout>
|