settings_search_controller.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content">
  6. <androidx.recyclerview.widget.RecyclerView
  7. android:id="@+id/recycler"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:clipToPadding="false"
  11. android:paddingTop="4dp"
  12. android:paddingBottom="4dp"
  13. tools:listitem="@layout/settings_search_controller_card" />
  14. <FrameLayout
  15. android:id="@+id/progress"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:visibility="gone">
  19. <FrameLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent"
  22. android:alpha="0.75"
  23. android:background="?attr/colorSurface" />
  24. <com.google.android.material.progressindicator.CircularProgressIndicator
  25. android:layout_width="wrap_content"
  26. android:layout_height="match_parent"
  27. android:layout_gravity="center"
  28. android:indeterminate="true" />
  29. </FrameLayout>
  30. </FrameLayout>