OSDN Git Service

75aacc7ed657b1232da826c1748c1222a9d52187
[gokigen/JoggingTimer.git] / wear / src / main / res / layout-notround / activity_detail.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     xmlns:app="http://schemas.android.com/apk/res-auto"
5     xmlns:tools="http://schemas.android.com/tools"
6     android:id="@+id/detail_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.recorddetail.DetailActivity">
11
12     <LinearLayout
13         android:layout_width="match_parent"
14         android:layout_height="match_parent"
15         android:id="@+id/time_list"
16         android:orientation="vertical"
17         android:scrollbarAlwaysDrawVerticalTrack="true">
18
19         <TextView
20             android:layout_width="match_parent"
21             android:layout_height="wrap_content"
22             android:id="@+id/detail_title_area"
23             android:text="@string/result_detail"
24             android:textAlignment="center"
25             android:clickable="true"
26             android:focusable="true"
27             android:visibility="visible"
28             />
29         <androidx.wear.widget.WearableRecyclerView
30             android:id="@+id/recycler_detail_view"
31             android:layout_width="match_parent"
32             android:layout_height="match_parent"
33             android:scrollbars="vertical"
34             >
35
36         </androidx.wear.widget.WearableRecyclerView>
37     </LinearLayout>
38
39     <androidx.wear.widget.drawer.WearableNavigationDrawerView
40         android:id="@+id/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     <androidx.wear.widget.drawer.WearableActionDrawerView
48         android:id="@+id/bottom_action_drawer"
49         android:layout_width="match_parent"
50         android:layout_height="match_parent"
51         android:background="@color/grey"
52         android:visibility="gone"
53         app:actionMenu="@menu/selector_detail" />
54
55 </androidx.wear.widget.drawer.WearableDrawerLayout>