Yes, you can reduce the ImageView in height relative to the TextView . To match the height of the TextView , set match_parent to android:layout_height for the ImageView , which will help ImageView take the height of the TextView . Try the following ...
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" > <ImageView android:layout_width="wrap_content" android:layout_height="match_parent" android:src="@drawable/ic_launcher" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TextView" android:textSize="30sp" /> </LinearLayout>
You can also achieve the same result as below.
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:drawableLeft="@drawable/ic_launcher" android:text="TextView" android:gravity="center_vertical" android:textSize="30sp" />
source share