popupwindows_multiselect.xml 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:background="@color/pull_down_bg">
  6. <LinearLayout
  7. android:id="@+id/linearLayout_selector"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginLeft="10dp"
  11. android:layout_marginRight="10dp"
  12. android:orientation="vertical">
  13. <ListView
  14. android:id="@+id/listView_selector"
  15. android:layout_width="match_parent"
  16. android:layout_height="120dp"
  17. android:layout_marginTop="10dp"
  18. android:divider="@null" />
  19. <Button
  20. android:id="@+id/btn_sure"
  21. android:layout_width="match_parent"
  22. android:layout_height="30dp"
  23. android:text="确定"
  24. android:background="@color/colorAccent"></Button>
  25. </LinearLayout>
  26. </RelativeLayout>