私は何かを理解しようとしています。私が見ている奇妙なことはwrap_content
、幅と高さを入れると、挿入される画像の実際の px (ピクセル) サイズよりも画像が大きくなることです。どうしてこんなことに?
私のコードwrap_content
:
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:src="@drawable/header" />
それは画像の正確なピクセルサイズの私のコードです:
<ImageView
android:id="@+id/imageView1"
android:layout_width="378px"
android:layout_height="155px"
android:adjustViewBounds="false"
android:src="@drawable/header" />
ご覧のとおり、これが正確なピクセル サイズです。
何故ですか?ビューをコンテンツサイズにラップする必要があると思ったwrap_content
のに、なぜ画面上で大きくなるのでしょうか?