Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / platforms / android-25 / data / res / layout / day_picker_content_material.xml
blobd77e8dc995d2eb740bbeb1eace63fa4d535052e0
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3      Copyright (C) 2015 The Android Open Source Project
5      Licensed under the Apache License, Version 2.0 (the "License");
6      you may not use this file except in compliance with the License.
7      You may obtain a copy of the License at
9           http://www.apache.org/licenses/LICENSE-2.0
11      Unless required by applicable law or agreed to in writing, software
12      distributed under the License is distributed on an "AS IS" BASIS,
13      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14      See the License for the specific language governing permissions and
15      limitations under the License.
16 -->
18 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
19              android:layout_width="match_parent"
20              android:layout_height="match_parent">
22     <android.widget.DayPickerViewPager
23         android:id="@+id/day_picker_view_pager"
24         android:layout_width="match_parent"
25         android:layout_height="match_parent" />
27     <ImageButton
28         android:id="@+id/prev"
29         android:layout_width="wrap_content"
30         android:layout_height="wrap_content"
31         android:minWidth="48dp"
32         android:minHeight="48dp"
33         android:src="@drawable/ic_chevron_start"
34         android:background="?attr/selectableItemBackgroundBorderless"
35         android:contentDescription="@string/date_picker_prev_month_button"
36         android:visibility="invisible"
37         android:nextFocusForward="@+id/next"
38         android:nextFocusDown="@+id/month_view" />
40     <ImageButton
41         android:id="@+id/next"
42         android:layout_width="wrap_content"
43         android:layout_height="wrap_content"
44         android:minWidth="48dp"
45         android:minHeight="48dp"
46         android:src="@drawable/ic_chevron_end"
47         android:background="?attr/selectableItemBackgroundBorderless"
48         android:contentDescription="@string/date_picker_next_month_button"
49         android:visibility="invisible"
50         android:nextFocusForward="@+id/month_view"
51         android:nextFocusDown="@+id/month_view"/>
53 </FrameLayout>