我的imagebutton代码不响应“fill_parent”和“wrap_content”。 相反,它只显示图像的中间(因为它是一个非常大的图像)。 我尝试为图像设置特定值,但它仍然无效!有人可以帮帮我吗?
res / drawable文件夹中的我的button.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">\
<item android:state_pressed="true"
android:drawable="@drawable/largishbutton" /> <!-- pressed -->
<item android:state_focused="true"
android:drawable="@drawable/largerbutton2" /> <!-- focused -->
<item android:drawable="@drawable/largerbutton" /> <!-- default -->
</selector>
我在res / layout文件夹中的main.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white">
<ImageButton
android:src="@drawable/button"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
/>
</RelativeLayout>
我尝试使用LinearLayout,但应用程序无法运行,我尝试用imageview替换图像按钮,但是按钮不起作用。
答案 0 :(得分:6)
如果您的图片比按钮大,则需要使用android:scaleType
或setMaxHeight()
之类的内容来调整大小以适应。
此外,我建议您<selector>
中的所有图片大小相同,至少在您按照自己的方式工作之前。