自定义酒店日期选择器
Posted atuan_wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义酒店日期选择器相关的知识,希望对你有一定的参考价值。
自定义酒店日期选择器
自定义日期区间选择器,类似于途家等酒店、旅游日期区间选择器:
- 重写PopupWindow
- 制定区间日历
- 添加日历日期选中监听
- 封装插件化
- github开源
CustomDatePicker
类似于途家等酒店日期选择器,弹出自定义的PopupWindow,监听日期选中,返回结果。代码已经开源到GitHub上,提供插件化。 —— [ Wiki ]
Github 地址:https://github.com/atuan07/CustomHotelCalender
1. 添加依赖:
Step 1.Add it in your root build.gradle at the end of repositories:
allprojects
repositories
...
maven url 'https://jitpack.io'
Step 2. Add the dependency
dependencies
implementation 'com.github.atuan07:CustomHotelCalender:V1.0.2'
2.使用方法:
private int startGroup = -1;//全局量
private int endGroup = -1;
private int startChild = -1;
private int endChild = -1;
...
new DatePopupWindow
.Builder(MainActivity.this, Calendar.getInstance().getTime(), view)//初始化
.setInitSelect(startGroup, startChild, endGroup, endChild)//设置上一次选中的区间状态
.setInitDay(false)//默认为true,UI内容为共几天、开始、结束;当为false时,UI内容为共几晚、入住、离开
.setDateOnClickListener(new DatePopupWindow.DateOnClickListener() //设置监听
//点击完成按钮后回调返回方法
@Override
public void getDate(String startDate, String endDate, int startGroupPosition, int
startChildPosition, int endGroupPosition, int endChildPosition)
startGroup = startGroupPosition;//开始月份位置
startChild = startChildPosition;//开始对应月份中日的位置
endGroup = endGroupPosition;//结束月份位置
endChild = endChildPosition;//结束对应月份中日的位置
String mStartTime = CalendarUtil.FormatDateYMD(startDate);
String mEndTime = CalendarUtil.FormatDateYMD(endDate);
result.setText("您选择了:" + mStartTime + "到" + mEndTime);
).builder();
效果图:
以上是关于自定义酒店日期选择器的主要内容,如果未能解决你的问题,请参考以下文章