开发者

Overlap image over two rows in a listview

开发者 https://www.devze.com 2023-04-08 04:42 出处:网络
I need create a listview with pinned overlay image over upper row and next row, like image example below.

I need create a listview with pinned overlay image over upper row and next row, like image example below.

Overlap image over two rows in a listview

Th开发者_StackOverflowanks a lot.


set the Layout parameters of image, ie size not exceed to the parent view

LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(30, 30);
yourImageView.setLayoutParams(layoutParams);
0

精彩评论

暂无评论...
验证码 换一张
取 消