1ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell<?xml version="1.0" encoding="utf-8"?>
2ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell<!-- Copyright (C) 2011 The Android Open Source Project
3ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell
4ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell     Licensed under the Apache License, Version 2.0 (the "License");
5ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell     you may not use this file except in compliance with the License.
6ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell     You may obtain a copy of the License at
7ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell
8ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell          http://www.apache.org/licenses/LICENSE-2.0
9ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell
10ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell     Unless required by applicable law or agreed to in writing, software
11ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell     distributed under the License is distributed on an "AS IS" BASIS,
12ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell     See the License for the specific language governing permissions and
14ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell     limitations under the License.
15ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell-->
16ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell
17ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
18ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell    android:layout_width="wrap_content" android:layout_height="match_parent">
19ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell        <ProgressBar android:id="@+id/progress"
20ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            style="?android:attr/progressBarStyleHorizontal"
21ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_width="match_parent"
22ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_height="wrap_content"
23ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_marginTop="16dip"
24ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_marginBottom="1dip"
25aac0d4ed026d1cfbcf3fa81c6e4eb96f4347ca17Fabrice Di Meglio            android:layout_marginStart="16dip"
26aac0d4ed026d1cfbcf3fa81c6e4eb96f4347ca17Fabrice Di Meglio            android:layout_marginEnd="16dip"
27ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_centerHorizontal="true" />
28ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell        <TextView
29ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:id="@+id/progress_percent"
30ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_width="wrap_content"
31ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_height="wrap_content"
32ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:paddingBottom="16dip"
33aac0d4ed026d1cfbcf3fa81c6e4eb96f4347ca17Fabrice Di Meglio            android:layout_marginStart="16dip"
34aac0d4ed026d1cfbcf3fa81c6e4eb96f4347ca17Fabrice Di Meglio            android:layout_marginEnd="16dip"
35aac0d4ed026d1cfbcf3fa81c6e4eb96f4347ca17Fabrice Di Meglio            android:layout_alignParentStart="true"
36ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_below="@id/progress"
37ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell        />
38ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell        <TextView
39ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:id="@+id/progress_number"
40ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_width="wrap_content"
41ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_height="wrap_content"
42ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:paddingBottom="16dip"
43aac0d4ed026d1cfbcf3fa81c6e4eb96f4347ca17Fabrice Di Meglio            android:layout_marginStart="16dip"
44aac0d4ed026d1cfbcf3fa81c6e4eb96f4347ca17Fabrice Di Meglio            android:layout_marginEnd="16dip"
45aac0d4ed026d1cfbcf3fa81c6e4eb96f4347ca17Fabrice Di Meglio            android:layout_alignParentEnd="true"
46ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell            android:layout_below="@id/progress"
47ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell        />
48ba3c377ba428bcf1c9b5a5cdf697fec0ed4fade7Adam Powell</RelativeLayout>
49