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

42 lines
1.5 KiB
XML
Raw Normal View History

2016-11-24 12:54:14 +01:00
<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"
2018-06-08 19:22:03 +02:00
android:paddingTop="2dp"
2016-11-24 12:54:14 +01:00
tools:context="info.nightscout.androidaps.plugins.Wear.WearFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/wear_resend"
style="?android:attr/buttonStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="3dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="3dp"
android:layout_weight="0.5"
2016-11-29 15:01:00 +01:00
android:text="@string/resend_all_data"
2016-11-24 16:08:01 +01:00
android:textColor="@color/colorTreatmentButton" />
<Button
android:id="@+id/wear_opensettings"
style="?android:attr/buttonStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="3dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="3dp"
android:layout_weight="0.5"
2016-11-29 15:01:00 +01:00
android:text="@string/open_settings_on_wear"
2016-11-24 16:08:01 +01:00
android:textColor="@color/colorTreatmentButton" />
2016-11-24 12:54:14 +01:00
</LinearLayout>
</FrameLayout>