Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / platforms / android-25 / data / res / layout / character_picker.xml
blob3ddbbb2c32fef9a3e661a840ad94344269236bf1
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2008 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
7   
8           http://www.apache.org/licenses/LICENSE-2.0
9   
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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18     android:orientation="horizontal"
19     android:layout_width="304dp"
20     android:layout_height="match_parent"
21     android:background="@drawable/keyboard_popup_panel_trans_background">
23     <GridView
24         android:id="@+id/characterPicker"
25         android:layout_width="0dp"
26         android:layout_height="wrap_content"
27         android:layout_weight="1"
28         android:padding="4dp"
29         android:verticalSpacing="8dp"
30         android:horizontalSpacing="8dp"
31         android:gravity="start"
32         android:drawSelectorOnTop="false"
33         android:numColumns="4"
34         android:columnWidth="48dp"
35         android:fadingEdge="none"
36         android:layout_gravity="center_vertical"
37         android:listSelector="#0000"
38     />
40     <Button
41         android:id="@+id/cancel"
42         android:layout_width="wrap_content"
43         android:layout_height="wrap_content"
44         android:layout_marginStart="12dp"
45         android:layout_marginEnd="12dp"
46         android:background="@drawable/btn_close"
47         android:layout_gravity="center_vertical"
48     />
49 </LinearLayout>