setWidth(int Pixels)使用dip还是px?
setWidth(int Pixels) 是使用设备独立像素还是物理像素作为单位? 例如,setWidth(100) 是否将视图的宽度设置为 100 倾斜或 100 像素?
谢谢。
Does setWidth(int pixels) use device independent pixel or physical pixel as unit?
For example, does setWidth(100) set the a view's width to 100 dips or 100 pxs?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
基于上面对我来说效果很好的答案,我生成了一些辅助方法,只需将它们添加到您的实用程序中即可在整个项目中使用它们。
Based on above answers which works fine to me, i generate some helper methods, just add them in your utils to use them in whole project.
它使用像素。这是一个 Kotlin 扩展函数,用于将像素转换为 dp
It uses pixels. here's a Kotlin extension function to convert pixels to dp
像素 当然,该方法要求像素作为参数。
Pixels of course, the method is asking for pixels as parameter.
它使用像素,但我确信您想知道如何使用下降。答案就在
TypedValue.applyDimension()
。以下是如何在代码中将 dips 转换为 px 的示例:It uses pixels, but I'm sure you're wondering how to use dips instead. The answer is in
TypedValue.applyDimension()
. Here's an example of how to convert dips to px in code:在代码中获取恒定数量的 DIP 的正确方法是创建一个包含 dp 值的资源 XML 文件,类似于:
然后像这样引用代码中的资源:
您返回的浮点数将根据像素密度进行相应缩放设备的转换方法,因此您无需在整个应用程序中不断复制转换方法。
The correct way to obtain a constant number of DIPs in code is to create a resources XML file containing dp values a bit like:
Then refer to the resource in your code like so:
The float you have returned will be scaled accordingly for the pixel density of the device and so you don't need to keep replicating a conversion method throughout your application.
方法 setWidth(100),设置 100 px 作为宽度(不是以 dp 为单位)。因此,您可能会在不同的 Android 手机上遇到宽度变化的问题。因此,请使用 dp 测量而不是像素。使用下面的代码获取样本宽度的 dp 测量=300px,高度=400px。
Method setWidth(100), set 100 px as width(not in dp).So you may face width varying problems on different android phones.So use measurement in dp instead of pixels.Use the below code to get measurement in dp of sample width=300px and height=400px.
来源(@Romain Guy)
Source (@Romain Guy)