Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / platforms / android-25 / data / res / layout / alert_dialog_progress_holo.xml
blob41773d25fde38da969ec77ed34fba3202236cf7f
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2011 The Android Open Source Project
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
8           http://www.apache.org/licenses/LICENSE-2.0
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 -->
17 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
18     android:layout_width="wrap_content" android:layout_height="match_parent">
19         <ProgressBar android:id="@+id/progress"
20             style="?android:attr/progressBarStyleHorizontal"
21             android:layout_width="match_parent"
22             android:layout_height="wrap_content"
23             android:layout_marginTop="16dip"
24             android:layout_marginBottom="1dip"
25             android:layout_marginStart="16dip"
26             android:layout_marginEnd="16dip"
27             android:layout_centerHorizontal="true" />
28         <TextView
29             android:id="@+id/progress_percent"
30             android:layout_width="wrap_content"
31             android:layout_height="wrap_content"
32             android:paddingBottom="16dip"
33             android:layout_marginStart="16dip"
34             android:layout_marginEnd="16dip"
35             android:layout_alignParentStart="true"
36             android:layout_below="@id/progress"
37         />
38         <TextView
39             android:id="@+id/progress_number"
40             android:layout_width="wrap_content"
41             android:layout_height="wrap_content"
42             android:paddingBottom="16dip"
43             android:layout_marginStart="16dip"
44             android:layout_marginEnd="16dip"
45             android:layout_alignParentEnd="true"
46             android:layout_below="@id/progress"
47         />
48 </RelativeLayout>