25 lines
885 B
XML
25 lines
885 B
XML
<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"
|
|
tools:context="info.nightscout.androidaps.plugins.Overview.Dialogs.ErrorDialog"
|
|
android:paddingTop="15dp"
|
|
android:paddingBottom="15dp">
|
|
|
|
<TextView
|
|
android:id="@+id/overview_error_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
<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="30dp"
|
|
android:text="@string/ok" />
|
|
|
|
</LinearLayout>
|