Android - 布局无法正常工作

时间:2012-02-17 11:23:35

标签: image android-layout

我想根据屏幕尺寸加载布局。

我的配置

  

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

谁能告诉我问题出在哪里?

1 个答案:

答案 0 :(得分:1)

  1. 可能您的图片没有覆盖所有屏幕。可能是图像有透明边框或没有完全正确的大小。您也可以android:scaleType="fitXY"使用ImageView加了:
  2. 建议您使用ldpi quilifier而不是small