设置瀑布流的时候,
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
最新回答 / 风满西楼
可以手动控制RecyclerView的定位位置,比如使RecyclerView平滑移动到position为0处:<...code...>类似的方法还有<...code...>等等,相关的可以多了解下。
2015-12-29