|
| 1 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + xmlns:tools="http://schemas.android.com/tools" |
| 3 | + android:layout_width="match_parent" |
| 4 | + android:layout_height="match_parent" |
| 5 | + android:orientation="vertical"> |
| 6 | + |
| 7 | + <ProgressBar |
| 8 | + android:id="@+id/progressCI" |
| 9 | + android:layout_width="wrap_content" |
| 10 | + android:layout_height="wrap_content" |
| 11 | + android:layout_gravity="center_horizontal" |
| 12 | + android:layout_marginBottom="20dp" |
| 13 | + android:layout_marginTop="20dp"/> |
| 14 | + |
| 15 | + <ProgressBar |
| 16 | + android:id="@+id/progressHI" |
| 17 | + style="?android:attr/progressBarStyleHorizontal" |
| 18 | + android:layout_width="match_parent" |
| 19 | + android:layout_height="wrap_content" |
| 20 | + android:layout_marginBottom="20dp" |
| 21 | + android:indeterminate="true"/> |
| 22 | + |
| 23 | + <ProgressBar |
| 24 | + android:id="@+id/progressHS" |
| 25 | + style="?android:attr/progressBarStyleHorizontal" |
| 26 | + android:layout_width="match_parent" |
| 27 | + android:layout_height="wrap_content" |
| 28 | + android:layout_marginBottom="20dp" |
| 29 | + android:indeterminate="false" |
| 30 | + android:max="100"/> |
| 31 | + |
| 32 | + <ProgressBar |
| 33 | + android:id="@+id/progressHS2" |
| 34 | + style="?android:attr/progressBarStyleHorizontal" |
| 35 | + android:layout_width="match_parent" |
| 36 | + android:layout_height="wrap_content" |
| 37 | + android:max="100"/> |
| 38 | + |
| 39 | +</LinearLayout> |
0 commit comments