有个bug,mHeights的数据填充不能放在构造函数里,这样多次添加item后,滑到底部会出现数组越界,应该放到onBindViewHolder里。
2016-01-18
设置瀑布流的时候,
holder.item_tv.setText(datas.get(pos));
android.view.ViewGroup.LayoutParams layoutParams = holder.itemView.getLayoutParams();
layoutParams.height = mHeights.get(pos);
holder.itemView.setLayoutParams(layoutParams);
不起效果;
holder.item_tv.setText(datas.get(pos));
android.view.ViewGroup.LayoutParams layoutParams = holder.itemView.getLayoutParams();
layoutParams.height = mHeights.get(pos);
holder.itemView.setLayoutParams(layoutParams);
不起效果;
2016-01-11
按了瀑布流之后,因为打开了新的一个activity,所以需要按返回键才能在actionbar选择listview什么的!!
2016-01-09