| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="300dp"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingTop="10dp"
- android:paddingBottom="10dp"
- android:layout_gravity="center_horizontal"
- android:background="@color/white"
- >
- <TextView
- android:id="@+id/progress_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="@dimen/textsize_18"
- android:layout_gravity="center_horizontal"
- android:textColor="@color/gbl"
- />
- <ProgressBar
- android:id="@+id/progress"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="280dp"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp"
- android:layout_gravity="center_horizontal"
- android:progressDrawable="@drawable/barcolor"
- />
-
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- >
- <TextView
- android:id="@+id/progress_percent"
- android:layout_width="80dp"
- android:layout_height="wrap_content"
- android:textSize="@dimen/textsize_18"
- android:layout_marginLeft="80dp"
- android:gravity="center_horizontal"
- android:textColor="@color/gbl"
- />
- <TextView
- android:id="@+id/progress_number"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:textSize="@dimen/textsize_18"
- android:gravity="center_horizontal"
- android:textColor="@color/gbl"
- />
- </LinearLayout>
- </LinearLayout>
|