Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / platforms / android-25 / data / res / layout / dialog_title_material.xml
blob1ea7f6e03fbcdd3ebfe6a43aad1a8a5224fdfce5
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2014 The Android Open Source Project
4      Licensed under the Apache License, Version 2.0 (the "License");
5      you may not use this file except in compliance with the License.
6      You may obtain a copy of the License at
8           http://www.apache.org/licenses/LICENSE-2.0
10      Unless required by applicable law or agreed to in writing, software
11      distributed under the License is distributed on an "AS IS" BASIS,
12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13      See the License for the specific language governing permissions and
14      limitations under the License.
15 -->
17 <!--
18 This is an optimized layout for a screen, with the minimum set of features
19 enabled.
20 -->
22 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
23     android:orientation="vertical"
24     android:fitsSystemWindows="true">
25     <TextView android:id="@+id/title"
26         style="?android:attr/windowTitleStyle"
27         android:singleLine="true"
28         android:ellipsize="end"
29         android:layout_width="match_parent"
30         android:layout_height="wrap_content"
31         android:textAlignment="viewStart"
32         android:paddingStart="?attr/dialogPreferredPadding"
33         android:paddingEnd="?attr/dialogPreferredPadding"
34         android:paddingTop="@dimen/dialog_padding_top_material" />
35     <View android:layout_width="match_parent"
36         android:layout_height="0dp" />
37     <FrameLayout
38         android:layout_width="match_parent" android:layout_height="wrap_content"
39         android:layout_weight="1"
40         android:orientation="vertical"
41         android:foreground="?attr/windowContentOverlay">
42         <FrameLayout android:id="@id/content"
43             android:layout_width="match_parent"
44             android:layout_height="match_parent" />
45     </FrameLayout>
46 </LinearLayout>