Android XML 布局:如何设置最大百分比宽度
在 Android 的 XML 布局中,可以使用百分比布局来指定最大的百分比宽度。以下是一个示例:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#FF0000"
android:layout_weight="70"
android:maxWidth="70%"/>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#00FF00"
android:layout_weight="30"
android:maxWidth="30%"/>
</LinearLayout>
在上述示例中,有两个子视图(View),一个占据 70% 的宽度,另一个占据 30% 的宽度。通过设置 android:maxWidth 属性为 70% 和 30%,可以限制子视图的最大宽度为父视图宽度的百分比。
原文地址: https://www.cveoy.top/t/topic/qmUf 著作权归作者所有。请勿转载和采集!