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

35 lines
1.2 KiB
XML
Raw Normal View History

2017-11-11 22:32:00 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
2019-02-28 23:16:50 +01:00
tools:context=".plugins.general.overview.Dialogs.ErrorDialog"
2017-11-11 22:32:00 +01:00
android:paddingTop="15dp"
android:paddingBottom="15dp">
<TextView
android:id="@+id/overview_error_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2017-12-13 15:22:08 +01:00
android:paddingLeft="10dp"
android:paddingRight="10dp"
2017-11-11 22:32:00 +01:00
android:layout_gravity="center_horizontal" />
<Button
android:id="@+id/overview_error_mute"
2017-11-11 22:32:00 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
2017-12-10 01:39:58 +01:00
android:layout_marginTop="15dp"
android:text="@string/mute" />
<Button
android:id="@+id/overview_error_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="5dp"
2017-11-11 22:32:00 +01:00
android:text="@string/ok" />
</LinearLayout>