Overlap image over two rows in a listview
I need create a listview with pinned overlay image over upper row and next row, like image example below.
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);
精彩评论