OSDN Git Service

レイアウトの見直し。(その4)
[gokigen/JoggingTimer.git] / wear / src / main / res / layout / information_dialog.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <androidx.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:paddingStart="@dimen/list_start_padding"
9     android:paddingEnd="@dimen/list_end_padding"
10     android:background="@color/background_color"
11 >
12     <ScrollView
13         android:layout_width="match_parent"
14         android:layout_height="wrap_content">
15
16         <LinearLayout
17             android:id="@+id/info_edit_data"
18             android:orientation="vertical"
19             android:layout_width="fill_parent"
20             android:layout_height="wrap_content"
21             android:padding="6dp"
22             >
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/background_color"
30                 android:foregroundTint="@color/white"
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="@color/white"
41                 android:autofillHints="" />
42         </LinearLayout>
43     </ScrollView>
44 </androidx.wear.widget.drawer.WearableDrawerLayout>