我有一个水平线性布局的TextView和
ImageView.是否可以缩放ImageView以使其相对于布局文件中TextView的大小?
基本上我想要的东西: –
而不是像这样的东西
布局文件将是
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" > <ImageView /> <TextView /> </LinearLayout>
解决方法
是的,您可以在相对于TextView的高度缩小ImageView.要匹配TextView的高度,请将match_parent设置为ImageView的android:layout_height,这将有助于ImageView获取TextView的高度.尝试如下……
<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>
您也可以通过以下方式获得相同的结果……
<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" />