bdp_dialog_download_app_loading.xml 986 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:background="@color/bd_transparent"
  7. android:gravity="center"
  8. android:orientation="vertical" >
  9. <ProgressBar
  10. android:id="@+id/progressBar"
  11. style="?android:attr/progressBarStyleHorizontal"
  12. android:progress="0"
  13. android:layout_width="240dp"
  14. android:layout_height="6dp"
  15. android:max="100"
  16. android:progressDrawable="@drawable/bd_progress_bar_drawable"/>
  17. <TextView
  18. android:id="@+id/txtDes"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_marginTop="10dp"
  22. android:text="@string/bd_downloading"
  23. android:textColor="#ffffff"
  24. android:textSize="12sp" />
  25. </LinearLayout>