1

Eclipse で XML プレビュー レイアウトを見ると問題なく見える ImageView がありますが、ハードウェア デバイスでアプリを起動すると、大きな空白が周囲に表示されます。これは、空白が追加されていない実際の画像です。これも私の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 に答える