我在RelativeLayout 中放置了一个imagebutton。但是我似乎无法弄清楚我需要做什么才能使按钮根据不同的分辨率进行缩放。
这是我的 activity_main.xml 的内容:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/background" android:scaleType="fitCenter" android:gravity="center"/>
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@null"
android:onClick="startVideo"
android:scaleType="fitCenter"
android:src="@drawable/button" android:layout_marginBottom="50dp"/>
</RelativeLayout>
background.png 是放置在 mdpi 文件夹(1280x800px)中的图像,button.png 也放置在 mdpi 文件夹(757x271px)中。
如果我在 1280x800px 分辨率(星系标签)上运行我的应用程序,它看起来很好,但是当我尝试在我的手机上运行应用程序时,ImageButton 不会缩小 - 它保持原始大小(757x271px)。
有谁知道这个的解决方案?