42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
|
<FrameLayout 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"
|
||
|
tools:context="info.nightscout.androidaps.plugins.PumpDanaRS.activities.PairingProgressDialog" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/danars_paringprogress_status"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="15dp"
|
||
|
android:text="STATUS" />
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/danars_paringprogress_progressbar"
|
||
|
style="@android:style/Widget.ProgressBar.Horizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="20dp"
|
||
|
android:layout_marginBottom="20dp"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:layout_marginRight="5dp"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:maxHeight="5dp"
|
||
|
android:minHeight="3dp" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/ok"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginBottom="15dp"
|
||
|
android:text="@string/ok" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
</FrameLayout>
|