1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/bd_transparent"
- android:gravity="center"
- android:orientation="vertical" >
- <ProgressBar
- android:id="@+id/progressBar"
- style="?android:attr/progressBarStyleHorizontal"
- android:progress="0"
- android:layout_width="240dp"
- android:layout_height="6dp"
- android:max="100"
- android:progressDrawable="@drawable/bd_progress_bar_drawable"/>
- <TextView
- android:id="@+id/txtDes"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="@string/bd_downloading"
- android:textColor="#ffffff"
- android:textSize="12sp" />
- </LinearLayout>
|