gpt4 book ai didi

Android设置按钮宽度为屏幕的一半

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:34:01 25 4
gpt4 key购买 nike

如何设置(在 XML 中)按钮的宽度为屏幕的一半。我发现只有包装内容、匹配父级(填满整个屏幕)和精确的 dp 数量,例如:50dp。如何设置它正好按住屏幕?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="2"
>

<Button
android:id="@+id/buttonCollect"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:text="przycisk" />

<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Button" />

最佳答案

这可以通过在布局上放置两个小部件来完成:使用 LinearLayout 并在两个小部件(按钮和另一个小部件)上设置 layout_width="fill_parent",并将 layout_weight 也设置为相同的值。LinearLayout 将平均分配两个小部件之间的宽度,您的按钮将占据屏幕的一半。

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

<Button
android:id="@+id/buttonCollect"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:text="przycisk" />

<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Button" />

关于Android设置按钮宽度为屏幕的一半,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11286147/

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