AndroidAPS/app/src/main/res/layout/configbuilder_fragment.xml

26 lines
908 B
XML
Raw Normal View History

2018-06-07 22:54:27 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
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
2016-06-15 21:47:26 +02:00
<ScrollView
2019-08-06 20:46:35 +02:00
android:id="@+id/configbuilder_main_layout"
2016-06-13 22:53:41 +02:00
android:layout_width="match_parent"
2016-06-15 21:47:26 +02:00
android:layout_height="match_parent">
<LinearLayout
2019-08-06 20:46:35 +02:00
android:id="@+id/configbuilder_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" />
2016-06-15 21:47:26 +02:00
</ScrollView>
2018-06-07 22:54:27 +02:00
</LinearLayout>