fragment_business_appointment.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:binding="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. tools:ignore="RtlHardcoded">
  7. <data>
  8. <variable
  9. name="click"
  10. type="com.hongyegroup.cpt_business.ui.fragment.BusinessAppointmentFragment.ClickProxy" />
  11. <import type="android.text.TextUtils" />
  12. </data>
  13. <LinearLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. android:background="@color/page_bg"
  17. android:orientation="vertical">
  18. <!-- Title Bar -->
  19. <LinearLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:background="@color/white"
  23. android:orientation="vertical">
  24. <View
  25. android:id="@+id/status_padding_view"
  26. android:layout_width="1dp"
  27. android:layout_height="0dp" />
  28. <FrameLayout
  29. android:layout_width="match_parent"
  30. android:layout_height="46dp">
  31. <com.guadou.lib_baselib.font_text_view.TextViewSBold
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:layout_gravity="center"
  35. android:text="Test Appointment"
  36. android:textColor="@color/input_black_text_5D"
  37. android:textSize="@dimen/d_18sp" />
  38. <com.guadou.lib_baselib.font_text_view.TextViewSBold
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:layout_gravity="center_vertical|right"
  42. android:layout_marginRight="@dimen/d_15dp"
  43. android:text="Book"
  44. android:textColor="@color/input_blue_text"
  45. android:textSize="@dimen/d_14sp"
  46. binding:clicks="@{click.gotoMakeAppointmentPage}" />
  47. </FrameLayout>
  48. </LinearLayout>
  49. <com.scwang.smart.refresh.layout.SmartRefreshLayout
  50. android:id="@+id/refresh_layout"
  51. android:layout_width="match_parent"
  52. android:layout_height="match_parent"
  53. android:layout_marginTop="@dimen/d_10dp">
  54. <com.scwang.smart.refresh.header.ClassicsHeader
  55. android:layout_width="match_parent"
  56. android:layout_height="wrap_content" />
  57. <androidx.recyclerview.widget.RecyclerView
  58. android:id="@+id/recyclerView"
  59. android:layout_width="match_parent"
  60. android:layout_height="match_parent"
  61. android:overScrollMode="never"
  62. android:scrollbars="none" />
  63. </com.scwang.smart.refresh.layout.SmartRefreshLayout>
  64. </LinearLayout>
  65. </layout>