AndroidAPS/insight/src/main/res/layout/local_insight_fragment.xml
2022-02-23 19:05:55 +01:00

51 lines
No EOL
1.8 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" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:drawableTop="@drawable/ic_insight"
android:paddingTop="10dp" />
<com.google.android.material.button.MaterialButton
style="@style/GrayButton"
android:id="@+id/refresh"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="16dp"
android:text="@string/refresh"
android:visibility="gone" />
<com.google.android.material.button.MaterialButton
style="@style/GrayButton"
android:id="@+id/operating_mode"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="16dp"
android:visibility="gone" />
<com.google.android.material.button.MaterialButton
style="@style/GrayButton"
android:id="@+id/tbr_over_notification"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="16dp"
android:visibility="gone" />
</LinearLayout>
</ScrollView>