仿京东购物车+订单

本文介绍了如何在Android中实现京东购物车和订单功能,包括权限设置、依赖引入、自定义适配器以及购物车中商品的增删、选中状态管理。详细讲解了一级列表和二级列表的交互逻辑,以及总价的计算方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


权限
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_CALENDAR"/>
<uses-permission android:name="android.permission.READ_CALENDAR"/>
依赖
compile 'com.squareup.okhttp3:okhttp:3.4.1'
implementation files('libs/gson-2.3.1.jar')
compile 'com.android.support:recyclerview-v7:26.0.2'
compile 'de.greenrobot:eventbus:3.0.0-beta1'
compile 'com.github.bumptech.glide:glide:3.7.0'


//购物车的适配器
public class GoodsAdapter extends BaseExpandableListAdapter {
    private Context context;
    private List<GetCarsBean.DataBean> groupList;
    private List<List<GetCarsBean.DataBean.ListBean>> childList;
    private LayoutInflater inflater;

    public GoodsAdapter(Context context, List<GetCarsBean.DataBean> groupList, List<List<GetCarsBean.DataBean.ListBean>> childList) {
        this.context = context;
        this.groupList = groupList;
        this.childList = childList;
        inflater = LayoutInflater.from(context);
    }

    @Override
    public int getGroupCount() {
        return groupList.size();
    }

    @Override
    public int getChildrenCount(int groupPosition) {
        return childList.get(groupPosition).size();
    }

    @Override
    public Object getGroup(int groupPosition) {
        return groupList.get(groupPosition);
    }

    @Override
    public Object getChild(int groupPosition, int childPosition) {
        return childList.get(groupPosition).get(childPosition);
    }

    @Override
    public long getGroupId(int groupPosition) {
        return groupPosition;
    }

    @Override
    public long getChildId(int groupPosition, int childPosition) {
        return childPosition;
    }

    @Override
    public boolean hasStableIds() {
        return false;
    }

    @Override
    public View getGroupView(final int groupPosition, boolean isExpanded, View convertView, final ViewGroup parent) {
        View view;
        final GroupViewHolder holder;
        if (convertView == null){
            holder = new GroupViewHolder();
            view = inflater.inflate(R.layout.item_parent,null);
            holder.cbGroup = view.findViewById(R.id.check_parent);
            holder.tv_number = view.findViewById(R.id.tv_num);
            view.setTag(holder);
        }else {
            view = convertView;
            holder = (GroupViewHolder) view.getTag();
        }
        final GetCarsBean.DataBean dataBean = groupList.get(groupPosition);
        holder.cbGroup.setChecked(dataBean.isGroupCheck());
        holder.tv_number.setText(dataBean.getSellerName());
        //一级列表点击事件
        holder.cbGroup.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //一级的选中状态
                boolean flag = holder.cbGroup.isChecked();
                //bean类关联
                dataBean.setGroupCheck(flag);
                //调用点击一级的选中改变二级的状态的方法
                setChangChildCheckBoxState(groupPosition,flag);
                //判断是否需要勾选全选按钮(一级的是否全部勾选)
                changAllState(isAllGroupCheckBoxSelected());
                //计算总价
                EventBus.getDefault().post(computerTotal());
                //刷新适配器
                notifyDataSetChanged();
            }
        });
        return view;
    }

    @Override
    public View getChildView(final int groupPosition, final int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
        View view;
        final ChildViewHolder holder;
        if (convertView == null) {
            holder = new ChildViewHolder();
            view = inflater.inflate(R.layout.item_child, null);
            holder.tupian = view.findViewById(R.id.tupian);
            holder.cbChild = view.findViewById(R.id.cb_child);
            holder.tv_tel = view.findViewById(R.id.tv_tel);
            holder.tv_content = view.findViewById(R.id.tv_content);
            holder.tv_time = view.findViewById(R.id.tv_time);
            holder.tv_price = view.findViewById(R.id.tv_pri);
            holder.iv_add = view.findViewById(R.id.iv_add);
            holder.iv_del = view.findViewById(R.id.iv_del);
            holder.tv_num = view.findViewById(R.id.tv_num);
            view.setTag(holder);
        } else {
            view = convertView;
            holder = (ChildViewHolder) view.getTag();
        }
        final GetCarsBean.DataBean.ListBean bean = childList.get(groupPosition).get(childPosition);
        String[] split = bean.getImages().split("\\|");
        Glide.with(context).load(split[0]).into(holder.tupian);
        holder.cbChild.setChecked(bean.isChildCheck());
        holder.tv_tel.setText(bean.getTitle().substring(0,15));
        holder.tv_content.setText(bean.getPid()+"");
        holder.tv_time.setText(bean.getCreatetime());
        holder.tv_price.setText(bean.getPrice() + "");
        holder.tv_num.setText(bean.getNum() + "");
        //二级的选中状态
        holder.cbChild.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //获取选是否选中
                boolean flag = holder.cbChild.isChecked();
                //Bean关联
                bean.setChildCheck(flag);
                //判断是否选中和是否全部选中
                if (holder.cbChild.isChecked()) {
                    //当前checkbox是选中状态
                    if (isAllChildCheckBoxSelected(groupPosition)) {
                        setChangGroupCheckBoxState(groupPosition, true);
                        changAllState(isAllGroupCheckBoxSelected());
                    }
                } else {
                    setChangGroupCheckBoxState(groupPosition, false);
                    changAllState(isAllGroupCheckBoxSelected());
                }
                //计算总价并发送
                EventBus.getDefault().post(computerTotal());
                //刷新适配器
                notifyDataSetChanged();
            }
        });
        //加号的点击事件
        holder.iv_add.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                int num = bean.getNum();
                holder.tv_num.setText(++num+"");
                bean.setNum(num);
                //计算总价并发送
                EventBus.getDefault().post(computerTotal());
                //刷新适配器
                notifyDataSetChanged();
            }
        });
        //减号的点击事件
        holder.iv_del.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                int num = bean.getNum();
                if (num==1){
                    Toast.makeText(context,"宝贝不能被在减少了!!!",Toast.LENGTH_SHORT).show();
                    return;
                }
                holder.tv_num.setText(--num+"");
                bean.setNum(num);
                //计算总价并发送
                EventBus.getDefault().post(computerTotal());
                //刷新适配器
                notifyDataSetChanged();
            }
        });
        return view;
    }

    @Override
    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return false;
    }
    class GroupViewHolder {
        CheckBox cbGroup;
        TextView tv_number;
    }

    class ChildViewHolder {
        ImageView tupian;
        CheckBox cbChild;
        TextView tv_tel;
        TextView tv_content;
        TextView tv_time;
        TextView tv_price;
        ImageView iv_del;
        ImageView iv_add;
        TextView tv_num;
    }
    /**
     * 一级点击改变二级的状态
     * @param groupPosition
     * @param flag
     */
   private void setChangChildCheckBoxState(int groupPosition,boolean flag){
       List<GetCarsBean.DataBean.ListBean> listBeans = childList.get(groupPosition);
       for (int i = 0; i < listBeans.size(); i++) {
           GetCarsBean.DataBean.ListBean listBean = listBeans.get(i);
           listBean.setChildCheck(flag);
       }
       notifyDataSetChanged();
   }

    /**
     * 二级改变一级的状态
     * @param groupPosition
     * @param flag
     */
    private void setChangGroupCheckBoxState(int groupPosition,boolean flag){
        GetCarsBean.DataBean dataBean = groupList.get(groupPosition);
        dataBean.setGroupCheck(flag);
        notifyDataSetChanged();
    }
    /**
     * 计算总价
     * @return
     */
    private PriceAndCountEvent computerTotal(){
       int count = 0;
       int price = 0;
        for (int i = 0; i < childList.size(); i++) {
            List<GetCarsBean.DataBean.ListBean> listBeans = childList.get(i);
            for (int j = 0; j < listBeans.size(); j++) {
                GetCarsBean.DataBean.ListBean listBean = listBeans.get(j);
                if (listBean.isChildCheck()){
                    count += listBean.getNum();
                    price += listBean.getNum()*listBean.getPrice();
                }
            }
        }
        PriceAndCountEvent event = new PriceAndCountEvent();
        event.setCount(count);
        event.setPrice(price);
        return event;
    }

    /**
     * 判断一级是否全选
     * @return
     */
    private boolean isAllGroupCheckBoxSelected(){
        for (int i = 0; i < groupList.size(); i++) {
            GetCarsBean.DataBean dataBean = groupList.get(i);
            if (!dataBean.isGroupCheck()){
                return false;
            }
        }
        return true;
    }

    /**
     * 判断二级是否全选
     * @param groupPosition
     * @return
     */
    private boolean isAllChildCheckBoxSelected(int groupPosition){
        List<GetCarsBean.DataBean.ListBean> listBeans = childList.get(groupPosition);
        for (int i = 0; i < listBeans.size(); i++) {
            GetCarsBean.DataBean.ListBean listBean = listBeans.get(i);
            if (!listBean.isChildCheck()){
                return false;
            }
        }
        return true;
    }

    /**
     * 改变全选状态
     * @param flag
     */
    private void changAllState(boolean flag){
        MessageEvent messageEvent = new MessageEvent();
        messageEvent.setChecked(flag);
        EventBus.getDefault().post(messageEvent);
    }

    /**
     * 全选反选
     * @param flag
     */
    public void setAll(boolean flag){
        for (int i = 0; i < groupList.size(); i++) {
            setChangGroupCheckBoxState(i,flag);
            setChangChildCheckBoxState(i,flag);
        }
        //计算总价并发送
        EventBus.getDefault().post(computerTotal());
        //刷新适配器
        notifyDataSetChanged();
    }
}


//订单页面适配器
public class OrderAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>{
    private Context context;
    private List<GetOrdersBean.DataBean> list = new ArrayList<>();
   private final MainPresenter mainPresenter;

    public OrderAdapter(Context context, List<GetOrdersBean.DataBean> list) {
        this.context = context;
        this.list = list;
        mainPresenter = new MainPresenter();
    }

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

    @Override
    public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
        final GetOrdersBean.DataBean dataBean = list.get(position);
        MyViewHolder myViewHolder = (MyViewHolder) holder;
        myViewHolder.tv_title.setText(dataBean.getTitle());
        int status = dataBean.getStatus();
        if (status == 0) {
            myViewHolder.tv_type.setText("待支付");
            myViewHolder.tv_action.setText("取消订单");
            myViewHolder.tv_type.setTextColor(Color.RED);
        } else if (status == 1) {
            myViewHolder.tv_type.setText("已支付");
            myViewHolder.tv_action.setText("查看订单");
            myViewHolder.tv_type.setTextColor(Color.BLACK);
        } else {
            myViewHolder.tv_type.setText("已取消");
            myViewHolder.tv_action.setText("查看订单");
            myViewHolder.tv_type.setTextColor(Color.BLACK);
        }

        myViewHolder.tv_price.setText("" + dataBean.getPrice());
        myViewHolder.tv_time.setText("" + dataBean.getCreatetime());

        myViewHolder.tv_action.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                new AlertDialog.Builder(context)
                        .setTitle("提示")
                        .setMessage("确定取消订单吗?")
                        .setPositiveButton("", new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int which) {
                               mainPresenter.updateOrder(context,dataBean.getStatus()+"", dataBean.getOrderid() + "");
                            }
                        })
                        .setNegativeButton("", new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int which) {

                            }
                        })
                        .show();
            }
        });
    }

    @Override
    public int getItemCount() {
        return list.size();
    }
    class MyViewHolder extends RecyclerView.ViewHolder {

        private final TextView tv_title;
        private final TextView tv_type;
        private final TextView tv_price;
        private final TextView tv_time;
        private final TextView tv_action;

        public MyViewHolder(View itemView) {
            super(itemView);
            tv_title = itemView.findViewById(R.id.order_tvTitle);
            tv_type = itemView.findViewById(R.id.order_tvType);
            tv_price = itemView.findViewById(R.id.order_tvPrice);
            tv_time = itemView.findViewById(R.id.order_tvTime);
            tv_action = itemView.findViewById(R.id.order_tvAction);
        }
    }
}
/**
 * 详情:创建订单的实体类
 */

public class BaseBean {

    /**
     * msg : 订单创建成功
     * code : 0
     */

    private String msg;
    private String code;

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值