progressbar.xml 840 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:padding="10dp"
  6. android:gravity="center_vertical"
  7. android:orientation="vertical">
  8. <ProgressBar
  9. android:id="@+id/pb_process"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:progress="0"
  13. android:max="100"
  14. style="@style/Base.Widget.AppCompat.ProgressBar.Horizontal" />
  15. <TextView
  16. android:id="@+id/tv_text"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_marginTop="5dp"
  20. android:gravity="left"/>
  21. </LinearLayout>