gpt4 book ai didi

android - 结合 layout_weight 和 minWidth

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:48:10 27 4
gpt4 key购买 nike

我有一个布局,我想使用 layout_weight (1:2) 将其分成 2 个 View 。但是,我希望左 View 的宽度至少为 400dp。

例如,如果左 View 通过使用权重获得 420dp 宽度,则保留它,但如果它小于 400dp,则将其设置为 400dp,然后将其余的全部交给另一个 View 。

这是我尝试过但不适合我的布局。

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:minWidth="400dp"
android:background="@android:color/holo_blue_bright"/>

<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:background="@android:color/holo_green_light"/>

</LinearLayout>

请帮忙,谢谢!

最佳答案

我想这就是你需要的:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<View
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:minWidth="400dp"
android:background="@android:color/holo_blue_bright"/>

<View
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:background="@android:color/holo_green_light"/>

</LinearLayout>

基本上,让第一个布局占用所需的空间但不少于 400dp。第二个将占用所有剩余的。对于所有涉及 weight 的情况,请确保 2 个子项所需的空间(宽度)小于父项可以提供的空间,否则您的内容会超出屏幕范围。

注意:我在手机布局上试过了,但是 400dp 在纵向屏幕外,所以看起来第一个布局占用了所有空间,所以请确保在设备上试一试在您想要布局跨度的方向上超过 400dp :-)

关于android - 结合 layout_weight 和 minWidth,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31980775/

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