Android ImageGetter images overlapping text

You could change your cointainer c (view) to a textView and then make your onPostExecute look like this: @Override protected void onPostExecute(Drawable result) { // set the correct bound according to the result from HTTP call Log.d(“height”,””+result.getIntrinsicHeight()); Log.d(“width”,””+result.getIntrinsicWidth()); urlDrawable.setBounds(0, 0, 0+result.getIntrinsicWidth(), 0+result.getIntrinsicHeight()); // change the reference of the current drawable to the result // from … Read more