领透酷医云安卓客户端

progress_dialog_layout.xml 974B

1234567891011121314151617181920212223242526
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="wrap_content">
  4. <LinearLayout android:id="@+id/body"
  5. android:orientation="horizontal"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:paddingTop="5dp"
  9. android:paddingBottom="5dp"
  10. android:baselineAligned="false">
  11. <com..widget.progressbar.MaterialProgressBar
  12. android:id="@+id/progress"
  13. android:layout_width="36dp"
  14. android:layout_height="36dp"
  15. android:layout_margin="16dp"/>
  16. <TextView android:id="@+id/message"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:layout_gravity="center_vertical"
  20. android:layout_marginRight="16dp"
  21. android:layout_marginEnd="16dp"/>
  22. </LinearLayout>
  23. </FrameLayout>