Android实现多维商品属性SKU选择

前言:

最近又做到这一块的需求,以前也做过类似仿淘宝的属性选择,当时在网上下载的demo参考,最多也支持两组商品属性,用的两个gridview结合,扩展性很差,这次不打算用之前的代码,所以重新自己写了一个demo**(文末附上项目地址)**

如图所示,界面UI这一块肯定不用gridview,那样太过繁琐,所以采用recyclerview,item里面渲染ViewGroup,根据数据源的数量,往ViewGroup里面添加Textview。这样就可以解决它的每个属性按钮宽高自适应。
这里重点是重写ViewGroup里面的onMeasure和onLayout方法:

/**
   * 测量子view大小 根据子控件设置宽和高
   */
  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
  {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    // 获得它的父容器为它设置的测量模式和大小
    int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);
    int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);
    int modeWidth = MeasureSpec.getMode(widthMeasureSpec);
    int modeHeight = MeasureSpec.getMode(heightMeasureSpec);

    // 如果是warp_content情况下,记录宽和高
    int width = 0;
    int height = 0;
    /**
     * 记录每一行的宽度,width不断取最大宽度
     */
    int lineWidth = 0;
    /**
     * 每一行的高度,累加至height
     */
    int lineHeight = 0;

    int cCount = getChildCount();

    // 遍历每个子元素
    for (int i = 0; i < cCount; i++)
    {
      View child = getChildAt(i);
      // 测量每一个child的宽和高
      measureChild(child, widthMeasureSpec, heightMeasureSpec);
      // 得到child的布局管理器
      MarginLayoutParams lp = (MarginLayoutParams) child
          .getLayoutParams();
      // 当前子空间实际占据的宽度
      int childWidth = child.getMeasuredWidth() + lp.leftMargin
          + lp.rightMargin;
      // 当前子空间实际占据的高度
      int childHeight = child.getMeasuredHeight() + lp.topMargin
          + lp.bottomMargin;
      /**
       * 如果加入当前child,则超出最大宽度,则的到目前最大宽度给width,类加height 然后开启新行
       */
      if (lineWidth + childWidth > sizeWidth)
      {
        width = Math.max(lineWidth, childWidth);// 取最大的
        lineWidth = childWidth; // 重新开启新行,开始记录
        // 叠加当前高度,
        height += lineHeight;
        // 开启记录下一行的高度
        lineHeight = childHeight;
      } else
      // 否则累加值lineWidth,lineHeight取最大高度
      {
        lineWidth += childWidth;
        lineHeight = Math.max(lineHeight, childHeight);
      }
      // 如果是最后一个,则将当前记录的最大宽度和当前lineWidth做比较
      if (i == cCount - 1)
      {
        width = Math.max(width, lineWidth);
        height += lineHeight;
      }

    }
    setMeasuredDimension((modeWidth == MeasureSpec.EXACTLY) ? sizeWidth
        : width, (modeHeight == MeasureSpec.EXACTLY) ? sizeHeight
        : height);

  }
@Override
  protected void onLayout(boolean changed, int l, int t, int r, int b)
  {
    mAllViews.clear();
    mLineHeight.clear();

    int width = getWidth();

    int lineWidth = 0;
    int lineHeight = 0;
    // 存储每一行所有的childView
    List<View> lineViews = new ArrayList<>();
    int cCount = getChildCount();
    // 遍历所有的孩子
    for (int i = 0; i < cCount; i++)
    {
      View child = getChildAt(i);
      MarginLayoutParams lp = (MarginLayoutParams) child
          .getLayoutParams();
      int childWidth = child.getMeasuredWidth();
      int childHeight = child.getMeasuredHeight();

      // 如果已经需要换行
      if (childWidth + lp.leftMargin + lp.rightMargin + lineWidth > width)
      {
        // 记录这一行所有的View以及最大高度
        mLineHeight.add(lineHeight);
        // 将当前行的childView保存,然后开启新的ArrayList保存下一行的childView
        mAllViews.add(lineViews);
        lineWidth = 0;// 重置行宽
        lineViews = new ArrayList<>();
      }
      /**
       * 如果不需要换行,则累加
       */
      lineWidth += childWidth + lp.leftMargin + lp.rightMargin;
      lineHeight = Math.max(lineHeight, childHeight + lp.topMargin
          + lp.bottomMargin);
      lineViews.add(child);
    }
    // 记录最后一行
    mLineHeight.add(lineHeight);
    mAllViews.add(lineViews);

    int left = 0;
    int top = 0;
    // 得到总行数
    int lineNums = mAllViews.size();
    for (int i = 0; i < lineNums; i++)
    {
      // 每一行的所有的views
      lineViews = mAllViews.get(i);
      // 当前行的最大高度
      lineHeight = mLineHeight.get(i);

      // 遍历当前行所有的View
      for (int j = 0; j < lineViews.size(); j++)
      {
        View child = lineViews.get(j);
        if (child.getVisibility() == View.GONE)
        {
          continue;
        }
        MarginLayoutParams lp = (MarginLayoutParams) child
            .getLayoutParams();

        //计算childView的Marginleft,top,right,bottom
        int lc = left + lp.leftMargin;
        int tc = top + lp.topMargin;
        int rc =lc + child.getMeasuredWidth();
        int bc = tc + child.getMeasuredHeight();

        child.layout(lc, tc, rc, bc);

        left += child.getMeasuredWidth() + lp.rightMargin
            + lp.leftMargin;
      }
      left = 0;
      top += lineHeight;
    }

  }

接下来是SKU的算法,因为本人的学生时期数学没有好好学习,幂集什么的,都不是很懂。所以在这里用了另外一种方法,把选项状态(三种:不能选择,可以选择,已选中)依次对属性按钮做出修改,这里虽然做了一些不必要的循环判断,但胜在功能的实现,如果大家有更好的想法,望不吝赐教。

贴上adapter代码(重点initOptions、canClickOptions和getSelected三个方法)

/**
 * Created by 胡逸枫 on 2017/1/16.
 */
public class GoodsAttrsAdapter extends BaseRecyclerAdapter<GoodsAttrsBean.AttributesBean> {

  private SKUInterface myInterface;

  private SimpleArrayMap<Integer, String> saveClick;

  private List<GoodsAttrsBean.StockGoodsBean> stockGoodsList;//商品数据集合
  private String[] selectedValue;  //选中的属性
  private TextView[][] childrenViews;  //二维 装所有属性

  private final int SELECTED = 0x100;
  private final int CANCEL = 0x101;

  public GoodsAttrsAdapter(Context ctx, List<GoodsAttrsBean.AttributesBean> list, List<GoodsAttrsBean.StockGoodsBean> stockGoodsList) {
    super(ctx, list);
    this.stockGoodsList = stockGoodsList;
    saveClick = new SimpleArrayMap<>();
    childrenViews = new TextView[list.size()][0];
    selectedValue = new String[list.size()];
    for (int i = 0; i < list.size(); i++) {
      selectedValue[i] = "";
    }
  }

  public void setSKUInterface(SKUInterface myInterface) {
    this.myInterface = myInterface;
  }

  @Override
  public int getItemLayoutId(int viewType) {
    return R.layout.item_skuattrs;
  }

  @Override
  public void bindData(RecyclerViewHolder holder, int position, GoodsAttrsBean.AttributesBean item) {
    TextView tv_ItemName = holder.getTextView(R.id.tv_ItemName);
    SKUViewGroup vg_skuItem = (SKUViewGroup) holder.getView(R.id.vg_skuItem);
    tv_ItemName.setText(item.getTabName());
    List<String> childrens = item.getAttributesItem();
    int childrenSize = childrens.size();
    TextView[] textViews = new TextView[childrenSize];
    for (int i = 0; i < childrenSize; i++) {
      LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
      params.setMargins(5, 5, 5, 0);
      TextView textView = new TextView(mContext);
      textView.setGravity(Gravity.CENTER);
      textView.setPadding(15, 5, 15, 5);
      textView.setLayoutParams(params);
      textView.setBackgroundColor(ContextCompat.getColor(mContext, R.color.saddlebrown));
      textView.setText(childrens.get(i));
      textView.setTextColor(ContextCompat.getColor(mContext, R.color.white));
      textViews[i] = textView;
      vg_skuItem.addView(textViews[i]);
    }
    childrenViews[position] = textViews;
    initOptions();
    canClickOptions();
    getSelected();
  }

  private int focusPositionG, focusPositionC;

  private class MyOnClickListener implements View.OnClickListener {
    //点击操作 选中SELECTED  取消CANCEL
    private int operation;

    private int positionG;

    private int positionC;

    public MyOnClickListener(int operation, int positionG, int positionC) {
      this.operation = operation;
      this.positionG = positionG;
      this.positionC = positionC;
    }

    @Override
    public void onClick(View v) {
      focusPositionG = positionG;
      focusPositionC = positionC;
      String value = childrenViews[positionG][positionC].getText().toString();
      switch (operation) {
        case SELECTED:
          saveClick.put(positionG, positionC + "");
          selectedValue[positionG] = value;
          myInterface.selectedAttribute(selectedValue);
          break;
        case CANCEL:
          saveClick.put(positionG, "");
          for (int l = 0; l < selectedValue.length; l++) {
            if (selectedValue[l].equals(value)) {
              selectedValue[l] = "";
              break;
            }
          }
          myInterface.uncheckAttribute(selectedValue);
          break;
      }
      initOptions();
      canClickOptions();
      getSelected();
    }
  }

  class MyOnFocusChangeListener implements View.OnFocusChangeListener {

    private int positionG;

    private int positionC;

    public MyOnFocusChangeListener(int positionG, int positionC) {
      this.positionG = positionG;
      this.positionC = positionC;
    }

    @Override
    public void onFocusChange(View v, boolean hasFocus) {
      String clickpositionC = saveClick.get(positionG);
      if (hasFocus) {
        v.setBackgroundColor(ContextCompat.getColor(mContext, R.color.pink));
        if (TextUtils.isEmpty(clickpositionC)) {
          ((TextView) v).setTextColor(ContextCompat.getColor(mContext, R.color.dodgerblue));
        } else if (clickpositionC.equals(positionC + "")) {

        } else {
          ((TextView) v).setTextColor(ContextCompat.getColor(mContext, R.color.dodgerblue));
        }
      } else {
        v.setBackgroundColor(ContextCompat.getColor(mContext, R.color.saddlebrown));
        if (TextUtils.isEmpty(clickpositionC)) {
          ((TextView) v).setTextColor(ContextCompat.getColor(mContext, R.color.white));
        } else if (clickpositionC.equals(positionC + "")) {

        } else {
          ((TextView) v).setTextColor(ContextCompat.getColor(mContext, R.color.white));
        }
      }
    }

  }

  /**
   * 初始化选项(不可点击,焦点消失)
   */
  private void initOptions() {
    for (int y = 0; y < childrenViews.length; y++) {
      for (int z = 0; z < childrenViews[y].length; z++) {//循环所有属性
        TextView textView = childrenViews[y][z];
        textView.setEnabled(false);
        textView.setFocusable(false);
        textView.setTextColor(ContextCompat.getColor(mContext, R.color.gray));//变灰
      }
    }
  }

  /**
   * 找到符合条件的选项变为可选
   */
  private void canClickOptions() {
    for (int i = 0; i < childrenViews.length; i++) {
      for (int j = 0; j < stockGoodsList.size(); j++) {
        boolean filter = false;
        List<GoodsAttrsBean.StockGoodsBean.GoodsInfoBean> goodsInfo = stockGoodsList.get(j).getGoodsInfo();
        for (int k = 0; k < selectedValue.length; k++) {
          if (i == k || TextUtils.isEmpty(selectedValue[k])) {
            continue;
          }
          if (!selectedValue[k].equals(goodsInfo
              .get(k).getTabValue())) {
            filter = true;
            break;
          }
        }
        if (!filter) {
          for (int n = 0; n < childrenViews[i].length; n++) {
            TextView textView = childrenViews[i][n];//拿到所有属性TextView
            String name = textView.getText().toString();
            //拿到属性名称
            if (goodsInfo.get(i).getTabValue().equals(name)) {
              textView.setEnabled(true);//符合就变成可点击
              textView.setFocusable(true); //设置可以获取焦点
              //不要让焦点乱跑
              if (focusPositionG == i && focusPositionC == n) {
                textView.setTextColor(ContextCompat.getColor(mContext, R.color.dodgerblue));
                textView.requestFocus();
              } else {
                textView.setTextColor(ContextCompat.getColor(mContext, R.color.white));
              }
              textView.setOnClickListener(new MyOnClickListener(SELECTED, i, n) {
              });
              textView.setOnFocusChangeListener(new MyOnFocusChangeListener(i, n) {
              });
            }
          }
        }
      }
    }
  }

  /**
   * 找到已经选中的选项,让其变红
   */
  private void getSelected() {
    for (int i = 0; i < childrenViews.length; i++) {
      for (int j = 0; j < childrenViews[i].length; j++) {//拿到每行属性Item
        TextView textView = childrenViews[i][j];//拿到所有属性TextView
        String value = textView.getText().toString();
        for (int m = 0; m < selectedValue.length; m++) {
          if (selectedValue[m].equals(value)) {
            textView.setTextColor(ContextCompat.getColor(mContext, R.color.red));
            textView.setOnClickListener(new MyOnClickListener(CANCEL, i, j) {
            });
          }
        }
      }
    }
  }
}

下载链接:

GitHub:地址

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • android仿京东商品属性筛选功能

    筛选和属性选择是目前非常常用的功能模块:几乎所有的APP中都会使用: 点击筛选按钮会弹出一个自己封装好的popupWindow,实用方法非常简单:两行代码直接显示:(当然初始化数据除外) 这里和以前用到的流式布局有些不一样:流式布局 以前使用的是单个分类,而且也没有在项目中大量实用:这个筛选功能除了数据外几乎都是从项目中Copy出来的: 整个popupWindow布局就是一个自定义的ListView,这个自定义的listview主要是控制listview的高度: 如果数据少的话就是自适应,如果数

  • Android 仿淘宝商品属性标签页

    需求 1.动态加载属性,如尺码,颜色,款式等 由于每件商品的属性是不确定的,有的商品的属性是颜色和尺码,有的是口味,有的是大小,所以这些属性不能直接写死到页面上. 2.动态加载属性下的标签 每个属性下的标签个数也不是一定的,比如有的商品的尺码是是S,M,XL,有的是均码,也就是每种属性的具体的内容是不一定的. 技术点 自定义ViewGroup,使其中的TextView可以依据内容长短自动换行,如下图所示 实现 布局 通过ListView来显示商品所有属性,每种属性作为ListView的Item.

  • Android实现多维商品属性SKU选择

    前言: 最近又做到这一块的需求,以前也做过类似仿淘宝的属性选择,当时在网上下载的demo参考,最多也支持两组商品属性,用的两个gridview结合,扩展性很差,这次不打算用之前的代码,所以重新自己写了一个demo**(文末附上项目地址)** 如图所示,界面UI这一块肯定不用gridview,那样太过繁琐,所以采用recyclerview,item里面渲染ViewGroup,根据数据源的数量,往ViewGroup里面添加Textview.这样就可以解决它的每个属性按钮宽高自适应. 这里重点是重写V

  • 微信小程序实现商品属性联动选择

    本文实例为大家分享了微信小程序实现商品属性联动选择的具体代码,供大家参考,具体内容如下 效果演示: 代码示例 1.commodity.xml <!-- <view class="title">属性值联动选择</view> --> <!--options--> <view class="commodity_attr_list"> <!--每组属性--> <view class="a

  • Material Design系列之Behavior实现支付密码弹窗和商品属性选择效果

    今天的效果在支付宝.淘宝.京东等电商App中很常见.比如支付宝输入密码弹窗.商城下单时选择商品属性时,从下面浮动上来一个PopupWindow,那么今天就带大家用Behavior来实现这两个效果,结果你会发现简直只需要一行代码. 总结下现在用的APP: 1. 仿支付宝弹出的输入支付密码窗口. 2. 仿淘宝/天猫弹出商品属性选择框. 3. 知乎首页上下滑动隐藏ToolBar和NavigationBar. 4. - 系列博客: 1. Material Design系列,Behavior之Bottom

  • 小程序实现商品属性选择或规格选择

    本文实例为大家分享了小程序实现商品属性选择或规格选择的具体代码,供大家参考,具体内容如下 实现效果 1.wxml <view wx:for="{{list}}" wx:key="index" wx:key="index" wx:for-index="childIndex" style="margin: 40px 0"> <view>{{item.name}}</view>

  • Android实现购物车添加商品特效

    一.引言 以前在饿了么上面订餐的时候,曾经看到过这么一个特效,就是将商品加入订单时,会有一个小球呈抛物线状落入购物车中,然后购物车中的数量会改变.具体的效果如下图. 效果很简单,就是一个抛物线的动画,那么我们应该用什么技术来实现呢?想了想,动画层是不个错的选择!下面开始分析及实现 二.分析 当点击购买按钮的时候,我们在布局上加入一个动画层,然后让小球在动画层上做抛物线运动,就可实现上图中的效果了. 说到做抛物线运动,当然需要数学上的一点小知识. 抛物线的原理很简单,其实就是X轴方向保持匀速线性运

  • 微信小程序商城项目之商品属性分类(4)

    续上一篇的文章:微信小程序之购物数量加减 -- 微信小程序实战商城系列(3) 所提及的购物数量的加减,现在说说商品属性值联动选择. 为了让同学们有个直观的了解,到电商网截了一个图片,就是红圈所示的部分 现在就为大家介绍这个小组件,在小程序中,该如何去写 下图为本项目的图: wxml: <view class="title">商品属性值联动选择</view> <!--options--> <view class="commodity_a

  • 月下载量上千次Android实现二维码生成器app源码分享

    在360上面上线了一个月,下载量上千余次.这里把代码都分享出来,供大家学习哈!还包括教大家如何接入广告,赚点小钱花花,喜欢的帮忙顶一个,大神见了勿喷,小学僧刚学Android没多久.首先介绍这款应用:APP是一款二维码生成器,虽然如何制作二维码教程网上有很多,我这里再唠叨一下并把我的所有功能模块代码都分享出来. 在这里我们需要一个辅助类RGBLuminanceSource,这个类Google也提供了,我们直接粘贴过去就可以使用了 package com.njupt.liyao; import c

  • Android仿淘宝商品详情页效果

    本文实例为大家分享了Android仿淘宝商品详情页的具体代码,供大家参考,具体内容如下 Demo地址:先上效果图 效果就是上面图片的效果 接下来看看如何实现 首先我们来看下布局文件 <LinearLayout android:id="@+id/header" android:layout_width="match_parent" android:layout_height="72dp" android:paddingTop="24

随机推荐