奇妙な問題があります。下の画像のサイズは136x166です。
これをImageView/Buttonで設定するとwrap_content
、この画像が大きくなりました
<Button
android:id="@+id/btn_reports"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/report_image" />
出力:wrap_contentを使用
<Button
android:id="@+id/btn_reports"
android:layout_width="136px"
android:layout_height="166px"
android:background="@drawable/report_image" />
出力:固定サイズの画像サイズ(元の136x166)
なぜそうなのか、誰かがこの問題に直面したのですか?