Android 各种屏幕尺寸的 ImageButton
Android ImageButton for various screen sizes
我正在尝试创建一个适合各种屏幕的图像按钮。但是,我无法让图像按钮正确适合更大的屏幕,而是在图像按钮上显示小得多的图像。
到目前为止我尝试过的:
- 我已经使用这个 link 生成了九个补丁的图像,但是即使我将文件添加到可绘制对象中:ldpi、mdpi、ldpi、xhdpi 和 xxhdpi 文件夹,图像仍然比屏幕宽度
- 我试过使用
android:scaleType="fitXY"
和 android:adjustViewBounds="true"
。这确实会根据每个屏幕尺寸进行调整,但您可以看到图像外围的灰色图像按钮可点击区域的边缘。
我下面的布局文件有什么问题吗?或者是否需要某些图像尺寸?
<?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
我正在尝试创建一个适合各种屏幕的图像按钮。但是,我无法让图像按钮正确适合更大的屏幕,而是在图像按钮上显示小得多的图像。
到目前为止我尝试过的:
- 我已经使用这个 link 生成了九个补丁的图像,但是即使我将文件添加到可绘制对象中:ldpi、mdpi、ldpi、xhdpi 和 xxhdpi 文件夹,图像仍然比屏幕宽度
- 我试过使用
android:scaleType="fitXY"
和android:adjustViewBounds="true"
。这确实会根据每个屏幕尺寸进行调整,但您可以看到图像外围的灰色图像按钮可点击区域的边缘。
我下面的布局文件有什么问题吗?或者是否需要某些图像尺寸?
<?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