How do I prevent scaling in Android Imageview?(如何防止在 Android Imageview 中缩放?)
问题描述
我有一张 480 x 40 像素的图像.我想在 ImageView 中显示此图像,而无需缩放以适应.
I have an image that is 480 pixels by 40 pixels. I would like to show this image in an ImageView without having it scale to fit.
例如:如果我的屏幕只有 320 像素宽,我希望只有 320 像素的图像显示在屏幕上,而不是让它自己塞进 ImageView(即使这意味着图像的其余部分被截断).
Ex: If my screen is only 320pixels wide I would like only 320pixels of the image to show on the screen, not have it cram itself into the ImageView (even if it means that the rest of the image gets cut off).
有没有办法防止它缩放以适应?
Is there a way to prevent it from scaling to fit?
另外,我希望图像的左侧与设备屏幕的左侧对齐.
Also, I would like the left side of the image to line up with the left side of the device's screen.
谢谢
推荐答案
使用ScaleType.CENTER
,像XML这样:
android:scaleType="center"
这将使图像在视图中居中,但不执行缩放"
This will "center the image in the view, but perform no scaling"
在此处阅读更多信息:http://developer.android.com/参考/android/widget/ImageView.ScaleType.html
(顺便说一句,这是谷歌搜索imageview scale"的第一次点击)
(This is by the way the first hit on googling "imageview scale")
这篇关于如何防止在 Android Imageview 中缩放?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何防止在 Android Imageview 中缩放?
基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01