仿美团酒店时间选择

本文介绍了如何仿照美团酒店的日期选择功能进行开发,通过在RecyclerView中嵌套RecyclerView实现。在开发过程中遇到了滚动问题和节假日判断的挑战,提供了源码和思路,期待大神指导。
摘要由CSDN通过智能技术生成

仿美团酒店时间选择

最近做项目有个需求是选择酒店入住和离店日期,准备着手写的时候没什么思路,去百度了一下就发现一两个博客,Github也很少,里面代码都差不多,刻下来运行一下,发现有bug,只好自己搞了,代码码思路结合网上的自己改改应该没问题;
思路在强大的recyclerview的item中嵌套recyclerview。
直接亮代码吧。

item中的item的布局R.layout.item_dateselect_day

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 
    android:id="@+id/linear_bg" xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:background="@color/color_white"
    android:layout_height="75dp">

    <TextView
        android:id="@+id/tv_jr"
        android:text=""
        android:layout_gravity="center"
        android:layout_marginBottom="12dp"
        android:textSize="@dimen/text_size_12sp"
        android:textColor="@color/color_text_b3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <TextView
        android:id="@+id/tv_day"
        android:text=""
        android:layout_gravity="center"
        android:layout_marginTop="5dp"
        android:textSize="@dimen/text_size_17sp"
        android:textColor="@color/color_text_b3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <View
        android:background="@color/color_divider"
        android:layout_width="match_parent"
        android:layout_gravity="bottom"
        android:layout_height="0.5dp"/>
</FrameLayout>

item中的item的adapter

package com.windmillsteward.jukutech.activity.home.commons.dataselect;

import android.content.Context;
import android.graphics.Color;
import android.support.v4.content.ContextCompat;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import com.windmillsteward.jukutech.R;

import java.util.List;

/**
 * 描述:日
 * 时间:2018/1/27/027
 * 作者:xjh
 */
public class DayDateSelectAdapter extends RecyclerView.Adapter<DayDateSelectAdapter.Holder> {

    private Context context;
    private List<DayBean> list;
    private onDateSelectListener listener;

    public DayDateSelectAdapter(Context context, List<DayBean> list) {
        this.context = context;
        this.list = list;
    }

    public interface onDateSelectListener{
        void onSelect(int pos);
    }

    public void setListener(onDateSelectListener listener) {
        this.listener = listener;
    }

    @Override
    public Holder onCreateViewHolder(ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(context).inflate(R.layout.item_dateselect_day, parent, false);
        return new Holder(view);
    }

    @Override
    public void onBindViewHolder(final Holder holder, int position) {
        DayBean entity = list.get(position);
        if (entity.getDay()==0) {
            holder.tv_day.setText("");
        } else {
            holder.tv_day.setText(entity.getDay()+"");
            holder.tv_jr.setText(entity.getJr());
            holder.itemView.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    if (listener!=null) {
                        listener.onSelect(holder.getAdapterPosition());
                    }
                }
            });

            if (entity.isSelect()) {
                holder.itemView.setBackgroundColor(ContextCompat.getColor(context,R.color.color_them));
                holder
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值