blob: 4bc4a8e1780fb73ba51937599ff66911f49227a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/configuration_wizard_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ConfigurationWizard" >
<ProgressBar
android:id="@+id/progressbar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="3"
android:maxHeight="20dip"
android:minHeight="20dip"
android:progress="0"
android:background="@android:color/transparent"/>
</RelativeLayout>
|