OSDN Git Service

[automerger skipped] Import translations. DO NOT MERGE am: e60e0d2291 -s ours
[android-x86/packages-apps-Settings.git] / res / layout / preference_list_fragment.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 /*
4 ** Copyright 2014, The Android Open Source Project
5 **
6 ** Licensed under the Apache License, Version 2.0 (the "License");
7 ** you may not use this file except in compliance with the License.
8 ** You may obtain a copy of the License at
9 **
10 **     http://www.apache.org/licenses/LICENSE-2.0
11 **
12 ** Unless required by applicable law or agreed to in writing, software
13 ** distributed under the License is distributed on an "AS IS" BASIS,
14 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ** See the License for the specific language governing permissions and
16 ** limitations under the License.
17 */
18 -->
19
20 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21     android:id="@+id/container_material"
22     android:orientation="vertical"
23     android:layout_width="match_parent"
24     android:layout_height="match_parent"
25     android:background="@android:color/transparent">
26
27     <FrameLayout android:id="@+id/pinned_header"
28         android:layout_width="match_parent"
29         android:layout_height="wrap_content"
30         android:visibility="gone" />
31
32     <FrameLayout
33         android:id="@android:id/list_container"
34         android:layout_height="0px"
35         android:layout_weight="1"
36         android:layout_width="match_parent"
37         android:paddingStart="@dimen/settings_side_margin"
38         android:paddingEnd="@dimen/settings_side_margin">
39
40         <include layout="@layout/loading_container" />
41
42     </FrameLayout>
43
44     <TextView android:id="@android:id/empty"
45         android:layout_width="wrap_content"
46         android:layout_height="match_parent"
47         android:padding="@*android:dimen/preference_fragment_padding_side"
48         android:layout_gravity="center"
49         android:gravity="center_vertical"
50         android:visibility="gone" />
51
52     <RelativeLayout android:id="@+id/button_bar"
53         android:layout_height="wrap_content"
54         android:layout_width="match_parent"
55         android:layout_weight="0"
56         android:visibility="gone">
57
58         <Button android:id="@+id/back_button"
59             style="?android:attr/buttonBarButtonStyle"
60             android:layout_width="150dip"
61             android:layout_height="wrap_content"
62             android:layout_margin="5dip"
63             android:layout_alignParentStart="true"
64             android:text="@*android:string/back_button_label" />
65
66         <LinearLayout
67             android:orientation="horizontal"
68             android:layout_width="wrap_content"
69             android:layout_height="wrap_content"
70             android:layout_alignParentEnd="true">
71
72             <Button android:id="@+id/skip_button"
73                 style="?android:attr/buttonBarButtonStyle"
74                 android:layout_width="wrap_content"
75                 android:layout_height="wrap_content"
76                 android:layout_margin="5dip"
77                 android:text="@*android:string/skip_button_label"
78                 android:visibility="gone" />
79
80             <Button android:id="@+id/next_button"
81                 style="?android:attr/buttonBarButtonStyle"
82                 android:layout_width="wrap_content"
83                 android:layout_height="wrap_content"
84                 android:layout_margin="5dip"
85                 android:text="@*android:string/next_button_label" />
86
87         </LinearLayout>
88
89     </RelativeLayout>
90
91 </LinearLayout>
92