Android 各种屏幕尺寸的 ImageButton

Android ImageButton for various screen sizes

我正在尝试创建一个适合各种屏幕的图像按钮。但是,我无法让图像按钮正确适合更大的屏幕,而是在图像按钮上显示小得多的图像。

到目前为止我尝试过的:

我下面的布局文件有什么问题吗?或者是否需要某些图像尺寸?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ScrollView
    android:id="@+id/homepageScrollView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true" >

    <RelativeLayout
        android:id="@+id/homepageRelLayout2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="fill" >

    <ImageButton
        android:id="@+id/homepageImageButton"
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:layout_alignParentLeft="true"
        android:layout_marginTop="40dp"
        android:src="@drawable/someImage" />

    </RelativeLayout>

</ScrollView>

</RelativeLayout>

如果使用ImageView+点击监听,会失去按钮in/out效果。 也许你可以尝试像这样给你的 ImageButton 一个透明背景:

android:background="?android:selectableItemBackground"

不要使用@null@android:color/transparent,它们也会失去按钮效果。

顺便说一句,android:selectableItemBackground 不适用于旧的 android 版本,例如 2.x