我在支持ImageButton的屏幕尺寸时遇到问题 添加ImageButton时,图像比屏幕尺寸大得多,一半超出屏幕限制 我尝试通过改变每个图像的大小,但在(4英寸屏幕尺寸)中,图像看起来比其他屏幕尺寸小。
我可以用xml制作任何方法,而不是为dpi文件夹添加许多不同的大小
希望有人可以提供帮助 非常感谢
main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="@drawable/walla"
tools:context=".MainActivity" >
<FrameLayout
android:id="@+id/frameLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" >
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="154dp"
android:background="@null"
android:src="@drawable/hex_button_one" />
</FrameLayout>
</RelativeLayout>
答案 0 :(得分:0)
这就是为什么制作不同的dpi文件夹所以每次在不同的屏幕上图像都会改变大小..确保你把它放在你的图像的右边文件夹上。