开发者

Add Relativelayout or listview in Gallery in android?

开发者 https://www.devze.com 2023-01-15 15:21 出处:网络
I will like to use gallery view to add listview or relativelayout. Most of the e开发者_如何学JAVAxamples that I have seen are of adding images in gallery and that is quite simple. Can someone let me k

I will like to use gallery view to add listview or relativelayout. Most of the e开发者_如何学JAVAxamples that I have seen are of adding images in gallery and that is quite simple. Can someone let me know how to add other layouts inside gallery view.


You just have to add an Adapter that creates each View dynamically in the getView() method.

So you can create a RelativeLayout like this:

RelativeLayout layout = new RelativeLayout(ctx);

and then add children as you like.

0

精彩评论

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