OSDN Git Service

1562bf8ae0c6becad26565bd527fe17dcd0d8b2b
[gokigen/JoggingTimer.git] / wear / src / main / res / layout-round / information_dialog.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <androidx.wear.widget.BoxInsetLayout
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:paddingStart="@dimen/list_start_padding"
9     android:paddingEnd="@dimen/list_end_padding"
10     android:background="@color/white"
11 >
12     <ScrollView
13         android:layout_width="match_parent"
14         android:layout_height="wrap_content"
15         >
16
17         <LinearLayout
18             android:id="@+id/info_edit_data"
19             android:orientation="vertical"
20             android:layout_width="fill_parent"
21             android:layout_height="wrap_content"
22             android:padding="2dp"
23             >
24             <Spinner
25                 android:id="@+id/spinner_selection"
26                 android:layout_width="fill_parent"
27                 android:layout_height="wrap_content"
28                 android:text="@string/blank"
29                 android:background="@color/white"
30                 android:foregroundTint="@color/black"
31                 android:visibility="visible" />
32
33             <EditText android:id="@+id/edit_title"
34                 android:layout_width="fill_parent"
35                 android:layout_height="wrap_content"
36                 android:autoLink="all"
37                 android:linksClickable="true"
38                 android:inputType="text"
39                 android:hint="@string/dialog_title_hint"
40                 android:textColor="#000"
41                 android:autofillHints="" />
42         </LinearLayout>
43     </ScrollView>
44 </androidx.wear.widget.BoxInsetLayout>