有一个奇怪的问题,下面给出的图片大小为 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)
为什么是这样,有人遇到过这个问题吗?