英文:
how to set the Image in ImageView without strected with full screen in android
问题
我正在使用 ImageView 来显示照片。我将照片显示在全屏模式下。然后我的照片被拉伸了。我的 ImageView 高度是500,宽度是300。如何解决这个问题。
英文:
I am using imageview to show the photo. And i am showing photo in full screen. then my photo is streched. and my imageview height is 500 and width is 300 .How to solve this task.
答案1
得分: 1
尝试更改图像视图的 scaleType
。
在XML中,
android:scaleType="centerInside"
如果centerInside
不是您想要的,请参考此链接中的其他选项:
https://thoughtbot.com/blog/android-imageview-scaletype-a-visual-guide
英文:
Try changing the scaleType
of the image view.
In xml,
android:scaleType="centerInside"
If center inside isn't what you want, see the other options at this link
https://thoughtbot.com/blog/android-imageview-scaletype-a-visual-guide
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论