我将这个小布局定义为插入到我的应用的每个页面中:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageButton
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:background="@null"
android:src="@drawable/sa_info"
android:layout_alignParentRight="true"/>
我的sa_info.png是118x118,但我希望它在屏幕上显得更小。如果我尝试将图像按钮的宽度和高度设置为所需的大小(比方说48dp),当我运行应用程序时生成的图像被裁剪到中心:
因此,我必须获得所需结果的唯一方法是将图像本身缩放到所需的分辨率。 我做错了什么,有更好的方法吗?
答案 0 :(得分:12)
尝试添加
android:scaleType =“fitCenter” - &gt; http://developer.android.com/reference/android/widget/ImageView.ScaleType.html
android:adjustViewBounds =“true” - &gt;如果希望ImageView调整其边界以保持其drawable的纵横比,请将此属性设置为true。