最后一个布局样式是瀑布流的布局,其实和网格布局几乎一样的,网格布局是规规矩矩的,而瀑布流就是有长有短的那种,有错位和落差感,有时候太规矩的不好看,有一点错位显得更加美观。
? ? 瀑布流的?RecyclerView Item 布局文件要注意了,不能写固定的一个高度,否则就没有效果了。比如,我们得这样改:
xmlns:app=”http://schemas.android.com/apk/res-auto”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:layout_margin=”8dp”
app:cardCornerRadius=”8dp”
app:cardElevation=”4dp”>
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:padding=”8dp”>
android:id=”@+id/img_recy_item_3_pic”
android:layout_width=”match_parent”
android:layout_height=”120dp”
android:scaleType=”centerCrop” />
android:id=”@+id/tv_recy_item_3_name”
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:layout_below=”@id/img_recy_item_3_pic”
android:layout_centerInParent=”true”
android:layout_marginTop=”8dp”
android:textSize=”16sp” />
? ? 注意上面的代码,cardview 的高度不能固定,以及下面的 textview 高度也都不能固定值,都要写为 wrap_content,适配器就不需要修改了,要改的地方就是数据格式还有?RecyclerView 的布局管理样式。
我们添加数据要改为这样,名称有长的有短的,才能形成长短不一的瀑布流的形式。
private void addStaggeredData() {
Map map = null;
Random random = new Random();
String[] str = {
“瀑布流\n”,
“瀑布流\n瀑布流\n”,
“瀑布流\n瀑布流\n瀑布流\n”,
“瀑布流\n瀑布流\n瀑布流\n瀑布流\n”,
};
for (int i = 0; i < 30; i++) {
int n = random.nextInt(pics.length);
map = new HashMap<>();
map.put(“pic”, pics[n]);
map.put(“name”, names[n] + “\n” + str[random.nextInt(str.length)]);
staggeredData.add(map);
}
}
———————
来源:oschina
链接:https://my.oschina.net/u/4410397/blog/3428799
今天的文章uview 瀑布流_RecyclerView 瀑布流布局分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/12346.html