显示时错误的 9 补丁初始化大小

Wrong 9 patch init size while displays

通过 Android Studio 从 png 文件创建了九个补丁图像。在 ImageView 上将补丁图像设置为背景,但 ImageView 按预期显示更大的尺寸。 Studio 显示该图像的大小为 117*95,但在显示 imageView 时显示的大小接近 334*266。 请帮助如何修复它。 PNG 和屏幕附加。

<ImageView android:background="@drawable/new_sent_bubble_edit1" android:layout_width="wrap_content" android:layout_height="wrap_content" />

nine patch view in studio

找到解决方案。只需要将 9 个补丁文件放到某个密度的 drawable 文件夹中。当将图片放入 xxhdpi-drawable 文件夹时,图像已按预期绘制。