I want to show 3 images from URL(Now fetching Using Picasso) in a Horizondal Grid. Is there a library to so that or do i need to code starting from the bottom?
Please advice.
If you want to show just 3 images, why don't you just use a LinearLayout
containing 3 ImageView
s, each with a layout_weight
of 1
?
Have a look at this answer: Horizontal ListView in Android?. It will link you to open-source libraries. You could either look at them and come up with your own implementation or use them as-is.
Another option is to use a ViewPager
.
Yet another option is to use a RecyclerView
with LinearLayoutManager
.