OSDN Git Service

c170c2db220547314959a85611e2c8918662596e
[gokigen/JoggingTimer.git] / wear / src / main / res / layout-round / activity_list.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     xmlns:app="http://schemas.android.com/apk/res-auto"
5     xmlns:tools="http://schemas.android.com/tools"
6     android:id="@+id/list_drawer_layout"
7     android:layout_width="match_parent"
8     android:layout_height="match_parent"
9     android:background="@color/black"
10     tools:context="net.osdn.gokigen.joggingtimer.recordlist.ListActivity">
11
12     <LinearLayout
13         xmlns:android="http://schemas.android.com/apk/res/android"
14         android:layout_width="match_parent"
15         android:layout_height="match_parent"
16         android:id="@+id/time_list"
17         android:orientation="vertical"
18         android:scrollbarAlwaysDrawVerticalTrack="true">
19         <TextView
20             android:layout_width="match_parent"
21             android:layout_height="wrap_content"
22             android:id="@+id/list_title_area"
23             android:text="@string/result_list"
24             android:textAlignment="center"
25             android:clickable="true"
26             android:focusable="true"
27             android:visibility="gone"
28             />
29         <android.support.wear.widget.WearableRecyclerView
30             xmlns:android="http://schemas.android.com/apk/res/android"
31             android:id="@+id/recycler_list_view"
32             android:layout_width="match_parent"
33             android:layout_height="match_parent"
34             android:scrollbars="vertical"
35             >
36         </android.support.wear.widget.WearableRecyclerView>
37     </LinearLayout>
38
39     <android.support.wear.widget.drawer.WearableNavigationDrawerView
40         android:id="@+id/list_top_navigation_drawer"
41         android:layout_width="match_parent"
42         android:layout_height="match_parent"
43         android:background="@color/grey"
44         android:visibility="visible"
45         app:navigationStyle="singlePage" />
46
47 </android.support.wear.widget.drawer.WearableDrawerLayout>