gpt4 book ai didi

android - 在 xml 中使用 Ratio Keylines

转载 作者:行者123 更新时间:2023-11-29 00:16:35 25 4
gpt4 key购买 nike

我正在尝试对齐我的布局,如 Material Design 的 Metrics and Keylines 网页所示,

http://www.google.com/design/spec/layout/metrics-and-keylines.html#metrics-and-keylines-ratio-keylines

无法弄清楚如何将其应用于我的布局,我如何在 xml 中执行此操作?感谢您的帮助

最佳答案

如果您没有要使用的具有所需纵横比的图像(或不需要),您可以使用占位符。例如,我创建了一个尺寸为 16px x 9px 的可绘制形状,并用它来调整相对布局的边界:

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/ratio16x9"/>

</RelativeLayout>

ratio16x9.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android">

<size android:width="16px" android:height="9px"/>

</shape>

关于android - 在 xml 中使用 Ratio Keylines,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26325934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com