OSDN Git Service

7b8532dd7ec0a0d857df6c8c5026c7ef99e030cb
[gokigen/JoggingTimer.git] / wear / src / main / res / layout-round / information_dialog.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <android.support.wear.widget.drawer.WearableDrawerLayout
3     xmlns:android="http://schemas.android.com/apk/res/android"
4     android:id="@+id/list_drawer_layout"
5     android:layout_width="match_parent"
6     android:layout_height="match_parent"
7     android:nestedScrollingEnabled="true"
8     android:background="@color/white">
9     <ScrollView
10         android:layout_width="match_parent"
11         android:layout_height="wrap_content">
12
13         <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
14             android:id="@+id/info_edit_data"
15             android:orientation="vertical"
16             android:layout_width="fill_parent"
17             android:layout_height="wrap_content"
18             android:padding="6dp"
19             >
20
21             <Spinner
22                 android:id="@+id/spinner_selection"
23                 android:layout_width="fill_parent"
24                 android:layout_height="wrap_content"
25                 android:text="@string/blank"
26                 android:background="@color/white"
27                 android:foregroundTint="@color/black"
28                 android:visibility="visible" />
29
30             <EditText android:id="@+id/edit_title"
31                 android:layout_width="fill_parent"
32                 android:layout_height="wrap_content"
33                 android:autoLink="all"
34                 android:linksClickable="true"
35                 android:inputType="text"
36                 android:hint="@string/dialog_title_hint"
37                 android:textColor="#000"
38                 />
39         </LinearLayout>
40     </ScrollView>
41 </android.support.wear.widget.drawer.WearableDrawerLayout>