I am fetching number of images and text related to it from server Now i want to set each image with text(at bottom) in LinearLayout
I got the answer of second part of the question from here
button.setCompoundDrawables(left, top, right, bottom);
But problem with this is I am getting images of different sizes and want to resize them
I am succeded to resizing Button by using Layout Params but with
setCompoundDrawable(left,top,right,bottom);
image doesnt get resized
How can i achieve this??