how to set the Image in ImageView without strected with full screen in android

huangapple go评论70阅读模式
英文:

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

huangapple
  • 本文由 发表于 2020年10月8日 13:03:52
  • 转载请务必保留本文链接:https://go.coder-hub.com/64256084.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定