如何防止 anImageButton
具有固定大小?选择器中使用的可绘制对象具有不同的大小,我希望ImageButton
调整自身大小以匹配图像大小。
我试过adjustViewBounds
没有成功。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp" >
<ImageButton
android:id="@+id/picture_imagebutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/tab_background_selector" />
</RelativeLayout>