简体   繁体   English

Android 布局:宽度为父级的一半

[英]Android Layout: width half of parent

I have a very simple layout that I can't make it looks like I want.我有一个非常简单的布局,我无法让它看起来像我想要的。 It's a LinearLayout with a button and a Switch.它是一个带有按钮和开关的 LinearLayout。 I want them to show one above the other, but I want their width to be the half of the parent layout.我希望它们显示一个在另一个之上,但我希望它们的宽度是父布局的一半。

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

I've been looking at other similar answer in SO but I couldn't find a solution that works for me.我一直在查看 SO 中的其他类似答案,但找不到适合我的解决方案。 This is what I've tried so far:这是我迄今为止尝试过的:

            <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>

With this, the button and the switch take all the space of the parent instead of take only the half.有了这个,按钮和开关占据了父级的所有空间,而不是只占据一半。 I've tried with android:layout_width = 0dp in the children but it makes they disappear.我试过在孩子中使用android:layout_width = 0dp ,但它使它们消失了。

Any help, please?请问有什么帮助吗?

One possible way is to have a master horizontal LinearLayout that splits the width to 2, and inside it have the vertical layout一种可能的方法是拥有一个主水平 LinearLayout 将宽度拆分为 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>

The trick is to use 0dp for the size you want manage via layout_weight !诀窍是将0dp用于您要通过layout_weight管理的大小! Try this试试这个

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

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

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

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

        </LinearLayout>

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

    </LinearLayout>

Try this code试试这个代码

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

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

                <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" />

               <View 
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"/>
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

                <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" />

               <View 
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"/>
             </LinearLayout>
        </LinearLayout>
Button button = (Button) findViewById(R.id.share_button);
DisplayMetrics displaymetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
int width = displaymetrics.widthPixels;
int buttonWidth = width/2;

set this buttonWidth to your button like button.setWidth(buttonWidth);将此buttonWidth设置为您的按钮,如button.setWidth(buttonWidth);

int params = linearLayout.getWidth()/2;

ViewGroup.LayoutParams( params, ViewGroup.LayoutParams.WRAP_CONTENT));

Short answer:简短的回答:

  1. Use android:weightSum="2" in your horizontal parent layout在水平父布局中使用android:weightSum="2"
  2. Use android:layout_weight="1" and android:layout_width="0dp" in your children layouts.在您的子布局中使用android:layout_weight="1"android:layout_width="0dp"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM