layout_basepickerview.xml 500 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout
  3. android:id="@+id/outmost_container"
  4. xmlns:android="http://schemas.android.com/apk/res/android"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:clickable="true"
  8. android:background="@color/bgColor_overlay">
  9. <FrameLayout
  10. android:id="@+id/content_container"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content">
  13. </FrameLayout>
  14. </FrameLayout>