我在36x36,48x48,72x72和96x96中制作了相同的图像按钮,并将它们放在drawable-ldpi,drawable-mdpi,drawable-hdpi目录中。
然后我创建了一个布局并在那里修改了我的图像按钮。
(我正在使用Eclipse)
在屏幕的左上方,你可以选择屏幕尺寸,所以我选择了2.7英寸,然后直接循环直到10.1英寸......每次我的图像按钮大小都改变了。
所以我的问题是,我是否需要为每个屏幕尺寸设置不同的xml布局文件?
谢谢!
编辑XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="@drawable/background_ass">
<TableLayout android:id="@+id/tableLayout1" android:layout_height="wrap_content" android:layout_width="fill_parent">
<TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageButton android:src="@drawable/level1"
android:id="@+id/imageButton1"
android:onClick="button_clicked1"
android:background="#00000000" android:layout_width="48dip" android:layout_height="48dip">
</ImageButton>
</TableRow>
<TableRow android:id="@+id/tableRow2" android:layout_width="wrap_content" android:layout_height="wrap_content">
<TextView android:text="TextView" android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
</TableRow>
<TableRow android:id="@+id/tableRow3" android:layout_width="wrap_content" android:layout_height="wrap_content">
</TableRow>
<TableRow android:id="@+id/tableRow4" android:layout_width="wrap_content" android:layout_height="wrap_content"></TableRow>
</TableLayout>
</LinearLayout>
答案 0 :(得分:2)
这些单独的文件夹没有意义,如果您为该文件提供相同的名称,将根据屏幕大小选择正确的分辨率文件。但请确保为图像提供相同的名称。如果您看到相应的按钮调整大小,那么您已正确完成此操作。