• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    android:layout_width="match_parent"
23    android:layout_height="match_parent" >
24
25    <com.android.wallpaperpicker.CropView
26        android:id="@+id/cropView"
27        android:layout_width="match_parent"
28        android:layout_height="match_parent" />
29
30    <ProgressBar
31        android:id="@+id/loading"
32        style="?android:attr/progressBarStyleLarge"
33        android:layout_width="wrap_content"
34        android:layout_height="wrap_content"
35        android:layout_gravity="center"
36        android:indeterminate="true"
37        android:indeterminateOnly="true"
38        android:visibility="invisible" />
39
40    <LinearLayout
41        android:id="@+id/wallpaper_strip"
42        android:layout_width="match_parent"
43        android:layout_height="wrap_content"
44        android:layout_gravity="bottom"
45        android:fitsSystemWindows="true"
46        android:orientation="vertical" >
47
48        <View
49            android:layout_width="match_parent"
50            android:layout_height="2dp"
51            android:background="@drawable/tile_shadow_top" />
52
53        <HorizontalScrollView
54            android:id="@+id/wallpaper_scroll_container"
55            android:layout_width="match_parent"
56            android:layout_height="wrap_content" >
57
58            <LinearLayout
59                android:id="@+id/master_wallpaper_list"
60                android:layout_width="wrap_content"
61                android:layout_height="wrap_content"
62                android:orientation="horizontal" >
63
64                <LinearLayout
65                    android:id="@+id/wallpaper_list"
66                    android:layout_width="wrap_content"
67                    android:layout_height="wrap_content"
68                    android:orientation="horizontal" />
69
70                <LinearLayout
71                    android:id="@+id/live_wallpaper_list"
72                    android:layout_width="wrap_content"
73                    android:layout_height="wrap_content"
74                    android:orientation="horizontal" />
75
76                <LinearLayout
77                    android:id="@+id/third_party_wallpaper_list"
78                    android:layout_width="wrap_content"
79                    android:layout_height="wrap_content"
80                    android:orientation="horizontal" />
81            </LinearLayout>
82        </HorizontalScrollView>
83
84        <View
85            android:layout_width="match_parent"
86            android:layout_height="2dp"
87            android:background="@drawable/tile_shadow_bottom" />
88    </LinearLayout>
89
90</FrameLayout>