gpt4 book ai didi

安卓版面: width half of parent

转载 作者:IT老高 更新时间:2023-10-28 21:37:08 27 4
gpt4 key购买 nike

我有一个非常简单的布局,我无法让它看起来像我想要的那样。这是一个带有按钮和开关的线性布局。我希望它们显示在另一个之上,但我希望它们的宽度是父布局的一半。

|--LinearLayout---------|
| |
| ----------- |
|| Switch | |
| ----------- |
| ----------- |
|| button | |
| ----------- |
------------------------

我一直在寻找其他类似的答案,但我找不到适合我的解决方案。这是我迄今为止尝试过的:

            <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:weightSum="2" >

<Switch
android:id="@+id/remember_me_switch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/remember" />

<Button
android:id="@+id/share_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:onClick="loginOnclick"
android:text="@string/login_button_text" />

</LinearLayout>

这样,按钮和开关占用了父级的所有空间,而不是只占用一半。我已经尝试在 child 中使用 android:layout_width = 0dp ,但这会使它们消失。

有什么帮助吗?

最佳答案

一种可能的方法是拥有一个主水平线性布局,将宽度拆分为 2,并在其中有垂直布局

    <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1"
android:orientation="vertical" >

<Switch
android:id="@+id/remember_me_switch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/remember" />

<Button
android:id="@+id/share_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:onClick="loginOnclick"
android:text="@string/login_button_text" />

</LinearLayout>
<!-- Right side spacer -->
<View
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_weight="1" />

</LinearLayout>

关于安卓版面: width half of parent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20000560/

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