Skip to content Skip to sidebar Skip to footer

Android Textview Doesn't Resize After Changing Text Size

I have a ListView with some custom layout for the row (an image, then two lines of text using two TextView in a vertical LinearLayout, see code below) My problem is that when I dyn

Solution 1:

I think you will have to change imageview height to fill_parent. Imageview is dictating the height of your layout.

<ImageView
  android:id="@+id/entries_list_item_icon"
  android:layout_width="wrap_content"
  android:layout_height="fill_parent"
  android:layout_marginRight="6dp" />

Post a Comment for "Android Textview Doesn't Resize After Changing Text Size"