41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:fillViewport="true">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:padding="16dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/status_item_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/refresh"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:text="@string/refresh"
|
||
|
android:visibility="gone" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/operating_mode"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:visibility="gone" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/tbr_over_notification"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:visibility="gone" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
</ScrollView>
|