gpt4 book ai didi

android - 调整宽度为半屏

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:05:40 26 4
gpt4 key购买 nike

我看到了这个链接:

Assign width to half available screen width declaratively

如何在相对布局中做同样的事情?这是代码:在相对布局中尝试线性布局。但这不起作用。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg" >

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

<Button
android:id="@+id/button5"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="14dp"
android:layout_weight="1"
android:text="Button" />

<Button
android:id="@+id/button6"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_weight="1"
android:text="Button" />

<Button
android:id="@+id/button4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_weight="1"
android:text="UID"
android:textColor="#ffe5f1f1" />

<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#ffe5f1f1"
android:hint="Enter UID"
android:inputType="number"
android:shadowColor="5"
android:textColor="#ff009999"
android:textStyle="bold"
android:typeface="monospace" >

<requestFocus />
</EditText>



<Button
android:id="@+id/button7"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_alignParentLeft="true"
android:layout_marginTop="18dp"
android:text="Button" />

<Button
android:id="@+id/button8"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/button7"
android:layout_weight="1"
android:layout_marginTop="16dp"
android:text="Button" />

<Button
android:id="@+id/button9"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_alignParentLeft="true"
android:layout_below="@+id/button8"
android:layout_marginTop="17dp"
android:text="Button" />

<EditText
android:id="@+id/editText2"
android:layout_width="50"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_weight="1"
android:background="#ffe5f1f1"
android:ems="10"
android:hint="Enter Name"
android:inputType="number"
android:inputType="textPersonName"
android:textColor="#ff009999"
android:textStyle="bold"
android:layout_weight="1"
android:typeface="monospace" />

<EditText
android:id="@+id/editText3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:ems="10"
android:layout_weight="1"
android:inputType="number" />

<EditText
android:id="@+id/editText4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button7"
android:layout_alignBottom="@+id/button7"
android:layout_alignParentRight="true"
android:ems="10"
android:layout_weight="1"
android:inputType="phone" />

<EditText
android:id="@+id/editText5"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button8"
android:layout_alignBottom="@+id/button8"
android:layout_alignParentRight="true"
android:ems="10"
android:layout_weight="1"
android:inputType="textPersonName" />

<RadioButton
android:id="@+id/radioButton2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button9"
android:layout_alignBottom="@+id/button9"
android:layout_alignLeft="@+id/editText5"
android:layout_weight="1"
android:text="Male" />

<RadioButton
android:id="@+id/radioButton1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/radioButton2"
android:layout_alignBottom="@+id/radioButton2"
android:layout_alignParentRight="true"
android:layout_weight="1"
android:text="Female" />

<Button
android:id="@+id/button10"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/button9"
android:layout_marginTop="31dp"
android:layout_weight="1"
android:text="Button" />

<Spinner
android:id="@+id/spinDept"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button10"
android:layout_alignBottom="@+id/button10"
android:layout_alignLeft="@+id/radioButton2"
android:layout_alignParentRight="true"
android:layout_weight="1"
android:background="#ff009999" />
</LinearLayout>
</RelativeLayout>

最佳答案

如果您在使用 RelativeLayout 时正好需要一半,这是一个很好的解决方法。你要做的是,制作一个假的不可见 View ,以父 View 为中心,并让左按钮与该假 View 对齐 alignParentLeft 和 alignRight ,右按钮反之亦然

<RelativeLayout 
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<View android:id="@+id/fakeView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_centerInParent="true"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@id/fakeView"
android:layout_alignParentLeft="true"
android:text="Left"/>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/fakeView"
android:layout_alignParentRight="true"
android:text="Right"/>

</RelativeLayout>

它真的很聪明。

关于android - 调整宽度为半屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11244326/

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