27 lines
970 B
XML
27 lines
970 B
XML
|
<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">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/confirmtext"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:text="asdfas"
|
||
|
android:textColor="@color/white" />
|
||
|
|
||
|
</android.support.v4.widget.NestedScrollView>
|
||
|
|
||
|
</FrameLayout>
|
||
|
</android.support.wear.widget.BoxInsetLayout>
|