我想根据屏幕尺寸加载布局。
我的配置
Android 2.2
小屏幕QVGA(240x320),低密度(120)
图像分辨率为240x320
RES /布局小/ myimg.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">
<ImageView
android:src="@drawable/simage"
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ImageView>
</LinearLayout>
但是当我运行应用程序时,屏幕没有被图像完全覆盖,屏幕的左侧和右侧会出现一个小的边距。
我也跟着下面的链接,但问题仍然存在
http://developer.android.com/guide/practices/screens_support.html#qualifiers
谁能告诉我问题出在哪里?
答案 0 :(得分:1)
android:scaleType="fitXY"
使用ImageView
的加了:强> ldpi
quilifier而不是small
。