gpt4 book ai didi

android - 即使应用程序在任何屏幕尺寸上运行,如何将这四个按钮设置在一行中?

转载 作者:搜寻专家 更新时间:2023-11-01 08:44:53 25 4
gpt4 key购买 nike

我试过这段代码,但这些按钮上的文字在我的手机里乱七八糟;虽然它在 Nexus 5 模拟器中很好......!我怎样才能将这 4 个按钮动态地放在一行,以便它们在任何屏幕尺寸上看起来都一样......

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:weightSum="8" >

<Button
android:id="@+id/bback"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="Back" />

<Button
android:id="@+id/bforward"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="Forward" />

<Button
android:id="@+id/brefresh"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="Refresh" />

<Button
android:id="@+id/bclear"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="Clear History" />
</LinearLayout>

最佳答案

将所有按钮的 android:layout_width 设置为 0dp 而不是 fill_parent

关于android - 即使应用程序在任何屏幕尺寸上运行,如何将这四个按钮设置在一行中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29428819/

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