为什么 wrap_content 大于实际像素大小?

Why is wrap_content bigger than real pixel size?(为什么 wrap_content 大于实际像素大小?)
本文介绍了为什么 wrap_content 大于实际像素大小?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图理解一些事情.我看到的一件奇怪的事情是,当我将 wrap_content 放入宽度和高度时,图像大于插入图像的实际 px(像素)大小.为什么会这样?

I am trying to understand something. A weird thing that I see is that when I put wrap_content in the width and hight, the image is bigger than the the real px (pixel) size of the image which is inserted. Why is that so?

我的 wrap_content 代码:

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:adjustViewBounds="false"
    android:src="@drawable/header" />

这就是我的代码与图像的精确像素大小:

and thats my code with exact pixel size of the image:

 <ImageView
    android:id="@+id/imageView1"
    android:layout_width="378px"
    android:layout_height="155px"
    android:adjustViewBounds="false"
    android:src="@drawable/header" />

如您所见,这就是确切的像素大小:

As you can see, thats the exact pixel size:

这是为什么呢?我认为 wrap_content 应该将视图包装到内容大小,为什么它在屏幕上更大?

Why is that? I thought that wrap_content should wrap the view to the content size so why is it bigger on screen?

推荐答案

http://developer.android.com/guide/practices/screens_support.html.

您需要在缩放后将图像放在相应的文件夹中.

you need to put images in respective folders after scaling.

例如如果你想要 100*100 的图像然后放置

e.g. if you want 100*100 image then place

75*75 in drawable-ldpi for Low density devices

100*100 in drawable-mdpi for medium density devices

150*150 in drawable-hdpi 用于高密度设备

drawable-xhdpi 中的 200*200 用于超高密度设备

这篇关于为什么 wrap_content 大于实际像素大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)