OSDN Git Service

Merge tag 'android-6.0.1_r74' into HEAD
[android-x86/packages-apps-Settings.git] / res / layout / fragment_setup_actions.xml
1 <!-- Copyright (C) 2014 The CyanogenMod Project
2
3      Licensed under the Apache License, Version 2.0 (the "License");
4      you may not use this file except in compliance with the License.
5      You may obtain a copy of the License at
6
7           http://www.apache.org/licenses/LICENSE-2.0
8
9      Unless required by applicable law or agreed to in writing, software
10      distributed under the License is distributed on an "AS IS" BASIS,
11      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12      See the License for the specific language governing permissions and
13      limitations under the License.
14 -->
15 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
16     android:layout_width="match_parent"
17     android:layout_height="match_parent"
18     android:orientation="vertical">
19
20     <ListView
21         android:id="@android:id/list"
22         android:layout_weight="1"
23         android:layout_width="match_parent"
24         android:layout_height="0dp" />
25
26     <View style="@style/settingSeparator" />
27
28     <LinearLayout
29         android:id="@+id/bottom_buttons"
30         android:layout_width="match_parent"
31         android:layout_height="wrap_content"
32         android:orientation="horizontal"
33         style="?android:buttonBarStyle">
34
35         <Button
36             android:id="@+id/back"
37             android:layout_width="0dp"
38             android:layout_height="wrap_content"
39             android:layout_weight="1"
40             android:text="@string/wizard_back"
41             style="?android:attr/borderlessButtonStyle"
42             />
43
44         <Button
45             android:id="@+id/finish"
46             android:layout_width="0dp"
47             android:layout_height="wrap_content"
48             android:layout_weight="1"
49             android:text="@string/wizard_finish"
50             style="?android:attr/borderlessButtonStyle"
51             />
52
53     </LinearLayout>
54
55 </LinearLayout>