blob: 2416e4f9ae3a7ffcb329cdf7c50e5ab87ac5c93c [file] [log] [blame]
Patrick Scott1c15ace2009-12-08 08:51:33 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="match_parent"
20 android:padding="8dip"
21 android:orientation="vertical"
22 android:background="@drawable/appwidget_bg" >
23
24 <LinearLayout
25 android:layout_width="match_parent"
26 android:layout_height="wrap_content"
27 android:orientation="horizontal" >
28
29 <ImageView
30 android:id="@+id/previous"
31 android:layout_width="wrap_content"
32 android:layout_height="wrap_content"
33 android:padding="10dip"
34 android:src="@drawable/ic_btn_find_prev" />
35
36 <TextView
37 android:id="@+id/title"
38 android:layout_width="0dip"
39 android:layout_height="wrap_content"
40 android:layout_weight="1"
41 android:gravity="center"
42 android:layout_gravity="center"
43 android:text="@string/title_bar_loading"
44 android:textAppearance="?android:attr/textAppearanceMedium"
45 android:textColor="?android:attr/textColorPrimary" />
46
47 <ImageView
48 android:id="@+id/next"
49 android:layout_width="wrap_content"
50 android:layout_height="wrap_content"
51 android:padding="10dip"
52 android:src="@drawable/ic_btn_find_next" />
53
54 </LinearLayout>
55
56 <ImageView
57 android:id="@+id/image"
58 android:visibility="gone"
59 android:layout_width="match_parent"
60 android:layout_height="match_parent"
61 android:scaleType="fitXY"
62 android:padding="5dip"
63 android:gravity="center" />
64
65 <RelativeLayout
66 android:id="@+id/progress"
67 android:visibility="visible"
68 android:layout_width="match_parent"
69 android:layout_height="match_parent"
70 android:gravity="center" >
71
72 <ProgressBar
73 android:layout_width="wrap_content"
74 android:layout_height="wrap_content"
75 android:indeterminateOnly="true" />
76
77 </RelativeLayout>
78
79</LinearLayout>