activity_meet_select.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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="match_parent"
  6. android:background="@drawable/bg_main"
  7. android:padding="10dp"
  8. tools:context=".ui.erp.activity.oa.UserSelectActivity">
  9. <com.xzjmyk.pm.activity.view.ClearEditText
  10. android:id="@+id/search_edit"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_marginLeft="10dp"
  14. android:layout_marginRight="10dp"
  15. android:background="@drawable/search_input"
  16. android:drawableLeft="@drawable/search"
  17. android:drawableRight="@drawable/search_clear"
  18. android:hint="@string/search"
  19. android:textColor="@color/dark_grey"
  20. android:textColorHint="@color/grey"
  21. android:textSize="15sp" />
  22. <ListView
  23. android:id="@+id/listview"
  24. android:layout_width="match_parent"
  25. android:layout_height="match_parent"
  26. android:layout_below="@+id/search_edit"
  27. android:layout_marginTop="10dp"
  28. android:divider="@color/item_line"
  29. android:scrollbars="none" />
  30. </RelativeLayout>