ImageView使手机中的图像比源图像大
我想在 ImageView 中正常显示图像,但问题是当我在手机中测试它时它总是变大,为什么?
这是源图像:
xml 代码:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ButtonMemorizeLayoutNextSura"
android:src="@drawable/quran_slidingdrawer_leftarrow_state"
android:layout_marginRight="10dip" />
I want to normally display an Image in an ImageView, though the problem is that it always becomes larger when I test it in my phone, Why?
Here is the src image:
xml code:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ButtonMemorizeLayoutNextSura"
android:src="@drawable/quran_slidingdrawer_leftarrow_state"
android:layout_marginRight="10dip" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
最可能的罪魁祸首是 dpi 缩放。尝试将图像移至
drawable-nodpi
文件夹(如果不存在则创建一个)。The most likely culprit is dpi scaling. Try moving the image to the
drawable-nodpi
folder (create one if it does not exist).您可以尝试在 ImageView 中使用scaleType。
you can try using scaleType in your ImageView.
设置标签
或试用中心
Set the tag
OR TRY CENTER
不要将高度和宽度作为换行内容给出,而是根据您的意愿使用 dial 给出高度和宽度。
Instead of giving height and width as wrap content, give height and width according to your wish using dip.