activity_process_msg.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <RelativeLayout
  8. android:background="@drawable/bg_bar"
  9. android:layout_width="match_parent"
  10. android:layout_height="50dp"
  11. android:orientation="horizontal"
  12. android:paddingBottom="5dp"
  13. android:paddingLeft="15dp"
  14. android:paddingRight="15dp"
  15. android:paddingTop="5dp">
  16. <com.xzjmyk.pm.activity.view.ClearEditText
  17. android:id="@+id/edt_search"
  18. android:layout_width="fill_parent"
  19. android:layout_height="fill_parent"
  20. android:layout_centerHorizontal="true"
  21. android:background="@drawable/search_input"
  22. android:drawableLeft="@drawable/search"
  23. android:drawableRight="@drawable/search_clear"
  24. android:hint="@string/search"
  25. android:textColor="@color/dark_grey"
  26. android:textColorHint="@color/grey"
  27. android:textSize="15sp" />
  28. <ImageView
  29. android:id="@+id/voice_search_iv"
  30. android:layout_width="30dp"
  31. android:layout_height="30dp"
  32. android:background="@drawable/btn_yuyin_nor"
  33. android:visibility="visible"
  34. android:layout_marginRight="25dp"
  35. android:layout_alignParentRight="true"
  36. android:layout_alignRight="@+id/search_edit"
  37. android:layout_marginTop="3dp"
  38. />
  39. </RelativeLayout>
  40. <com.handmark.pulltorefresh.library.PullToRefreshListView
  41. android:id="@+id/lv_process"
  42. android:layout_width="match_parent"
  43. android:layout_height="match_parent"
  44. android:divider="@color/gray_light"
  45. android:dividerPadding="1px"
  46. android:listSelector="#00000000"
  47. android:scrollingCache="false"
  48. android:scrollbars="none" >
  49. </com.handmark.pulltorefresh.library.PullToRefreshListView>
  50. </LinearLayout>