gpt4 book ai didi

android - LinearLayout的相邻

转载 作者:行者123 更新时间:2023-11-29 14:21:46 25 4
gpt4 key购买 nike

我试图让两个 LinearLayout 彼此相邻,但下面的代码不起作用,它将它们放在最上面。

你能帮忙吗?或者你有更好的主意吗?

谢谢?

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="0.5"
android:background="#999">



</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="0.5"
android:background="#977000">



</LinearLayout>



</LinearLayout>

最佳答案

使用这个只是改变 android:orientation="horizo​​ntal" 代替 android:orientation="vertical

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:background="#999"
android:orientation="horizontal" >
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:background="#977000"
android:orientation="horizontal" >
</LinearLayout>

关于android - LinearLayout的相邻,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21258184/

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