1. ホーム
  2. android

imageViewの上下にある余分なスペースを取り除くにはどうしたらいいですか?

2023-08-20 11:26:28

質問

私は、本当に単純な画像を RelativeLayout の中にあるのですが、なぜか上下に余分なスペースが入ってしまい、取り除くことができません。どのようにそれをクリアすることができますか?

以下のような感じです。

以下はそのコードです。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:src="@drawable/slice11pp" />
</RelativeLayout>

どのように解決するのですか?

これを試してみてください。

android:adjustViewBounds="true"