gpt4 book ai didi

android - 如何在同一行的左侧创建 Textview 并在右侧创建两个按钮?

转载 作者:太空狗 更新时间:2023-10-29 13:36:29 25 4
gpt4 key购买 nike

在 Android 中,用同一行说明了如何在左侧创建一个 TextView 并在右侧创建两个按钮。哪种布局更适合此布局 Table 或 Relative ?

最佳答案

您可以使用 LinearLayout 来实现这一点

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:layout_weight="1"
android:text="a text"/>

<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 1">
</Button>

<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 2">
</Button>
</LinearLayout>

关于android - 如何在同一行的左侧创建 Textview 并在右侧创建两个按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9923811/

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