How to display an image full size with ImageView?(如何使用 ImageView 显示全尺寸图像?)
问题描述
当我尝试以全尺寸显示图像时遇到问题.我试图用 wrap_content 显示图像.但它是较小的真实图像.
I have problem when I try to display the image with full size. I tried to display image with wrap_content. But it is smaller real image.
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/screen1_logo" />
我去这个图像的属性并查看一些信息:尺寸 211 x 74.然后我尝试显示具有固定宽度和高度的图像.我发现它更大了.
I go to the properties of this image and see some information: dimentions 211 x 74. Then I try to display image with fixed width and height. I see it's bigger.
<ImageView
android:layout_width="211px"
android:layout_height="74px"
android:src="@drawable/screen1_logo" />
这是正确的方式吗?我们是否必须固定尺寸才能以全尺寸显示图像?请帮我解释和解决这个问题.
is it right way? do we must to fix size to display image with full size? Please help me to explain and resolve this problem.
推荐答案
添加一个 scaleType
到你的 ImageView
add a scaleType
to your ImageView
<ImageView
android:scaleType="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/screen1_logo" />
来自文档 android:scaleType="center"
图像在视图中居中,但不执行缩放.
Center the image in the view, but perform no scaling.
这篇关于如何使用 ImageView 显示全尺寸图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 ImageView 显示全尺寸图像?


基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 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