fg_interest_course_layout.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:paddingTop="10dp"
  6. android:layout_height="match_parent">
  7. <TextView
  8. android:id="@+id/tv_filter"
  9. android:layout_width="wrap_content"
  10. android:layout_height="0dp"
  11. android:drawableRight="@drawable/icon_arrow_down"
  12. android:drawablePadding="6dp"
  13. android:ellipsize="end"
  14. android:gravity="center"
  15. android:includeFontPadding="false"
  16. android:maxLength="6"
  17. android:maxLines="1"
  18. android:paddingStart="13dp"
  19. android:paddingEnd="8dp"
  20. android:text="筛选"
  21. android:textColor="@color/color_333333"
  22. android:textSize="@dimen/sp_14"
  23. app:layout_constraintBottom_toBottomOf="@+id/view_search_bg"
  24. app:layout_constraintLeft_toLeftOf="parent"
  25. app:layout_constraintTop_toTopOf="@+id/view_search_bg" />
  26. <View
  27. android:id="@+id/view_search_bg"
  28. android:layout_width="0dp"
  29. android:layout_height="34dp"
  30. android:layout_marginEnd="14dp"
  31. android:background="@drawable/bg_white_18dp"
  32. app:layout_constraintLeft_toRightOf="@+id/tv_filter"
  33. app:layout_constraintRight_toRightOf="parent"
  34. app:layout_constraintTop_toTopOf="parent" />
  35. <ImageView
  36. android:id="@+id/iv_search_icon"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_marginStart="12dp"
  40. android:src="@drawable/icon_search"
  41. app:layout_constraintBottom_toBottomOf="@+id/view_search_bg"
  42. app:layout_constraintLeft_toLeftOf="@+id/view_search_bg"
  43. app:layout_constraintTop_toTopOf="@+id/view_search_bg" />
  44. <com.cooleshow.base.widgets.ClearEditText
  45. android:id="@+id/et_target_name"
  46. android:layout_width="0dp"
  47. android:layout_height="0dp"
  48. android:layout_marginEnd="5dp"
  49. android:background="@null"
  50. android:ellipsize="end"
  51. android:hint="@string/mine_course_search_tip"
  52. android:includeFontPadding="false"
  53. android:maxLines="1"
  54. android:paddingStart="8dp"
  55. android:textColorHint="@color/color_66000000"
  56. android:textColor="@color/color_333333"
  57. android:textCursorDrawable="@drawable/shape_2dc7aa_1dp"
  58. android:textSize="@dimen/sp_14"
  59. android:theme="@style/MyEditText"
  60. app:layout_constraintBottom_toBottomOf="@+id/view_search_bg"
  61. app:layout_constraintLeft_toRightOf="@+id/iv_search_icon"
  62. app:layout_constraintRight_toLeftOf="@+id/tv_search"
  63. app:layout_constraintTop_toTopOf="@+id/view_search_bg" />
  64. <TextView
  65. android:id="@+id/tv_search"
  66. android:layout_width="56dp"
  67. android:layout_height="28dp"
  68. android:layout_marginEnd="3dp"
  69. android:background="@drawable/shape_1ecdac_18dp"
  70. android:gravity="center"
  71. android:includeFontPadding="false"
  72. android:text="搜索"
  73. android:textColor="@color/white"
  74. android:textSize="@dimen/sp_14"
  75. app:layout_constraintBottom_toBottomOf="@+id/view_search_bg"
  76. app:layout_constraintRight_toRightOf="@+id/view_search_bg"
  77. app:layout_constraintTop_toTopOf="@+id/view_search_bg" />
  78. <View
  79. android:layout_marginTop="12dp"
  80. app:layout_constraintLeft_toLeftOf="parent"
  81. app:layout_constraintTop_toBottomOf="@+id/view_search_bg"
  82. android:id="@+id/view_top_line"
  83. android:layout_width="match_parent"
  84. android:layout_height="1px"/>
  85. <com.scwang.smart.refresh.layout.SmartRefreshLayout
  86. android:id="@+id/refreshLayout"
  87. android:layout_width="match_parent"
  88. android:layout_height="0dp"
  89. app:layout_constraintRight_toRightOf="parent"
  90. app:layout_constraintBottom_toBottomOf="parent"
  91. app:layout_constraintLeft_toLeftOf="parent"
  92. app:layout_constraintTop_toBottomOf="@+id/view_top_line"
  93. app:srlEnableLoadMore="true">
  94. <androidx.recyclerview.widget.RecyclerView
  95. android:id="@+id/recyclerView_list"
  96. android:layout_marginEnd="14dp"
  97. android:layout_marginStart="14dp"
  98. android:layout_width="match_parent"
  99. android:layout_height="match_parent"
  100. android:overScrollMode="never"
  101. android:scrollbars="none" />
  102. </com.scwang.smart.refresh.layout.SmartRefreshLayout>
  103. </androidx.constraintlayout.widget.ConstraintLayout>