1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 /* 4 ** 5 ** Copyright 2013, The Android Open Source Project 6 ** 7 ** Licensed under the Apache License, Version 2.0 (the "License"); 8 ** you may not use this file except in compliance with the License. 9 ** You may obtain a copy of the License at 10 ** 11 ** http://www.apache.org/licenses/LICENSE-2.0 12 ** 13 ** Unless required by applicable law or agreed to in writing, software 14 ** distributed under the License is distributed on an "AS IS" BASIS, 15 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 ** See the License for the specific language governing permissions and 17 ** limitations under the License. 18 */ 19 --> 20 21 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 22 xmlns:launcher="http://schemas.android.com/apk/res-auto" 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" > 25 26 <com.android.launcher3.CropView 27 android:id="@+id/cropView" 28 android:layout_width="match_parent" 29 android:layout_height="match_parent" /> 30 31 <ProgressBar 32 android:id="@+id/loading" 33 style="?android:attr/progressBarStyleLarge" 34 android:layout_width="wrap_content" 35 android:layout_height="wrap_content" 36 android:layout_gravity="center" 37 android:indeterminate="true" 38 android:indeterminateOnly="true" 39 android:visibility="invisible" /> 40 41 <LinearLayout 42 android:id="@+id/wallpaper_strip" 43 android:layout_width="match_parent" 44 android:layout_height="wrap_content" 45 android:layout_gravity="bottom" 46 android:fitsSystemWindows="true" 47 android:orientation="vertical" > 48 49 <View 50 android:layout_width="match_parent" 51 android:layout_height="2dp" 52 android:background="@drawable/tile_shadow_top" /> 53 54 <HorizontalScrollView 55 android:id="@+id/wallpaper_scroll_container" 56 android:layout_width="match_parent" 57 android:layout_height="wrap_content" > 58 59 <LinearLayout 60 android:id="@+id/master_wallpaper_list" 61 android:layout_width="wrap_content" 62 android:layout_height="wrap_content" 63 android:orientation="horizontal" > 64 65 <LinearLayout 66 android:id="@+id/wallpaper_list" 67 android:layout_width="wrap_content" 68 android:layout_height="wrap_content" 69 android:orientation="horizontal" /> 70 71 <LinearLayout 72 android:id="@+id/live_wallpaper_list" 73 android:layout_width="wrap_content" 74 android:layout_height="wrap_content" 75 android:orientation="horizontal" /> 76 77 <LinearLayout 78 android:id="@+id/third_party_wallpaper_list" 79 android:layout_width="wrap_content" 80 android:layout_height="wrap_content" 81 android:orientation="horizontal" /> 82 </LinearLayout> 83 </HorizontalScrollView> 84 85 <View 86 android:layout_width="match_parent" 87 android:layout_height="2dp" 88 android:background="@drawable/tile_shadow_bottom" /> 89 </LinearLayout> 90 91 </FrameLayout>