Android UI设计理念

发布于 2024-12-22 20:46:08 字数 335 浏览 3 评论 0原文

过去 6 个月我一直在开发 Android。我想知道为什么 UI 设计是在“dp”中完成的。如果用“%”而不是 dp 来提及,那就太好了。我的意思是假设屏幕的总宽度和高度为“100%”,我们可以划分每个小部件的宽度和高度。可能是这样的:

<ImageView android:layout_width="20%" android:layout_height="20%" />

这样每个屏幕都会自动获取它。当然 "wrap_content""fill_parent" 也可以。但不能将它们用于所有视图。我不知道是否可能。

I have been working on android for the last 6 months. I wonder why UI Design is done in "dp"s. It would be great if its mentioned in "%" instead of dp's. What i meant to say is assuming total width and height of the screen to "100%" we can divide the width and height of the each widget. may be like this:

<ImageView android:layout_width="20%" android:layout_height="20%" />

So that every screen automatically takes it. Offcourse "wrap_content" and "fill_parent" can do. But cant use them to all views. I dont know if its possible or not.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

宛菡 2024-12-29 20:46:08

这只是谷歌的用户界面设计方面,它不可能做你想做的事。这是因为布局高度和宽度采用整数值。但是,布局权重采用百分比形式的小数值。因此,在某种程度上,您可以做您想做的事情,但只能考虑重量,而不考虑高度或宽度。对于这个问题+1。

It's just the UI design aspect of Google that it's not possible to do what you intend to. That's 'cuz the layout height and width take integer values. However, layout weight takes decimal values in the form of percentage. So, in a way it's possible to do what you're trying to, but only with weight and not with height or width. +1 for the question.

≈。彩虹 2024-12-29 20:46:08

我认为你不能在布局xml中使用“%”,你可以使用布局权重

i think you cant use "%" in layout xml, you can use layout weight

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文