md_progress_dialog_indeterminate.xml 915 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:orientation="horizontal"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content"
  7. android:gravity="start|center_vertical">
  8. <ProgressBar
  9. android:id="@android:id/progress"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:layout_marginLeft="@dimen/md_dialog_frame_margin"
  13. android:layout_marginStart="@dimen/md_dialog_frame_margin" />
  14. <TextView
  15. android:id="@android:id/message"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:fontFamily="sans-serif"
  19. android:textSize="16sp"
  20. tools:text="Message"
  21. tools:ignore="UnusedAttribute" />
  22. </LinearLayout>