1

我有一个 ImageView,当我在 Eclipse 上的 XML 预览布局中查看时,它看起来不错,但是当我在我的硬件设备上启动应用程序时,它周围会出现一个很大的空白。这是实际图像的样子,没有添加空白。这也是我的XML 文件 。我如何摆脱这个空白?

4

1 回答 1

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图像之外创建边界。

于 2012-08-24T02:31:00.747 回答