AndroidAPS/wear/src/main/res/layout/action_confirm_text.xml

40 lines
1.6 KiB
XML
Raw Normal View History

2018-06-27 08:04:57 +02:00
<android.support.wear.widget.BoxInsetLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="15dp">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
app:boxedEdges="all">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
2018-06-27 16:55:37 +02:00
<LinearLayout
2018-06-27 08:04:57 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-06-27 16:55:37 +02:00
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="title"
2018-06-27 20:22:19 +02:00
android:textAppearance="@style/TextAppearance.Wearable.Medium"
2018-06-27 16:55:37 +02:00
android:textColor="@color/white" />
<TextView
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="message"
2018-06-27 20:22:19 +02:00
android:textAppearance="@style/TextAppearance.Wearable.Small"
2018-06-27 16:55:37 +02:00
android:textColor="@color/white" />
</LinearLayout>
2018-06-27 08:04:57 +02:00
</android.support.v4.widget.NestedScrollView>
</FrameLayout>
</android.support.wear.widget.BoxInsetLayout>