ImageView在我的图像周围添加了空白区域

时间:2012-08-24 01:43:29

标签: android android-imageview

我有一个ImageView,当我在Eclipse上的XML预览布局中查看时看起来很好,但是当我在我的硬件设备上启动应用程序时,会有一个大的whitespace来围绕它。这是实际的image,没有添加的空格。这也是我的XML file。我如何摆脱这个空白?

1 个答案:

答案 0 :(得分:2)

由于您的图片不应太大,请尝试以下操作:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/linkMe"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="cat"
        android:src="@drawable/ashsc" />

</LinearLayout>

这样,图像不会尝试缩放,也不会在ImageView图像之外创建边界。