view_wheel_date_picker.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:gravity="center"
  6. android:orientation="horizontal">
  7. <com.aigestudio.wheelpicker.widgets.WheelYearPicker
  8. android:id="@+id/wheel_date_picker_year"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content" />
  11. <TextView
  12. android:id="@+id/wheel_date_picker_year_tv"
  13. android:layout_width="wrap_content"
  14. android:textColor="#536D8A"
  15. android:layout_height="wrap_content"
  16. android:layout_marginEnd="@dimen/WheelMargins"
  17. android:layout_marginStart="@dimen/WheelMargins"
  18. android:text="@string/Year" />
  19. <com.aigestudio.wheelpicker.widgets.WheelMonthPicker
  20. android:id="@+id/wheel_date_picker_month"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content" />
  23. <TextView
  24. android:textColor="#536D8A"
  25. android:id="@+id/wheel_date_picker_month_tv"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:layout_marginEnd="@dimen/WheelMargins"
  29. android:layout_marginStart="@dimen/WheelMargins"
  30. android:text="@string/Month" />
  31. <com.aigestudio.wheelpicker.widgets.WheelDayPicker
  32. android:id="@+id/wheel_date_picker_day"
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content" />
  35. <TextView
  36. android:textColor="#536D8A"
  37. android:id="@+id/wheel_date_picker_day_tv"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:layout_marginStart="@dimen/WheelMargins"
  41. android:text="@string/Day" />
  42. </LinearLayout>