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 <ListView android:id="@+id/backup_list" 41 style="@style/PreferenceFragmentListSinglePane" 42 android:layout_width="match_parent" 43 android:layout_height="match_parent" 44 android:paddingTop="@dimen/dashboard_padding_top" 45 android:paddingBottom="@dimen/dashboard_padding_bottom" 46 android:scrollbarStyle="@*android:integer/preference_fragment_scrollbarStyle" 47 android:clipToPadding="false" 48 android:drawSelectorOnTop="false" 49 android:elevation="@dimen/dashboard_category_elevation" 50 android:visibility="gone" 51 android:scrollbarAlwaysDrawVerticalTrack="true" /> 52 53 <include layout="@layout/loading_container" /> 54 55 </FrameLayout> 56 57 <TextView android:id="@android:id/empty" 58 android:layout_width="wrap_content" 59 android:layout_height="match_parent" 60 android:padding="@*android:dimen/preference_fragment_padding_side" 61 android:layout_gravity="center" 62 android:gravity="center_vertical" 63 android:visibility="gone" /> 64 65 <include layout="@layout/admin_support_details_empty_view" /> 66 67 <RelativeLayout android:id="@+id/button_bar" 68 android:layout_height="wrap_content" 69 android:layout_width="match_parent" 70 android:layout_weight="0" 71 android:visibility="gone"> 72 73 <Button android:id="@+id/back_button" 74 style="?android:attr/buttonBarButtonStyle" 75 android:layout_width="150dip" 76 android:layout_height="wrap_content" 77 android:layout_margin="5dip" 78 android:layout_alignParentStart="true" 79 android:text="@*android:string/back_button_label" 80 /> 81 82 <LinearLayout 83 android:orientation="horizontal" 84 android:layout_width="wrap_content" 85 android:layout_height="wrap_content" 86 android:layout_alignParentEnd="true"> 87 88 <Button android:id="@+id/skip_button" 89 style="?android:attr/buttonBarButtonStyle" 90 android:layout_width="wrap_content" 91 android:layout_height="wrap_content" 92 android:layout_margin="5dip" 93 android:text="@*android:string/skip_button_label" 94 android:visibility="gone" 95 /> 96 97 <Button android:id="@+id/next_button" 98 style="?android:attr/buttonBarButtonStyle" 99 android:layout_width="wrap_content" 100 android:layout_height="wrap_content" 101 android:layout_margin="5dip" 102 android:text="@*android:string/next_button_label" 103 /> 104 105 </LinearLayout> 106 107 </RelativeLayout> 108 109</LinearLayout> 110 111