gpt4 book ai didi

java - 居中按钮和 textView

转载 作者:行者123 更新时间:2023-11-30 01:52:19 24 4
gpt4 key购买 nike

有人可以帮我解决我的问题吗?在我 table 的最后一行,我有一个按钮,我希望它居中。下面是代码 fragment 。

<TableRow>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_gravity="center"
android:layout_height="fill_parent"
android:layout_width="fill_parent">

<Button
android:id="@+id/button1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Button"/>
</LinearLayout>
</TableRow>
  1. 为什么编码不起作用?
  2. 如何在按钮旁边放置一个 textView?

谢谢..

最佳答案

您应该使用 android:layout_span="max__number_of_columns" 使 RelativeLayout 宽度与父级匹配。
在 RelativeLayout 中,您可以轻松地将 Button 放在中心,将 Textview 放在按钮旁边。
试试这段代码

<TableLayout>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_span="2" // 2 is the number of col in your table
>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="button" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="aaa"
android:layout_toRightOf="@id/button"
/>

</RelativeLayout>
</TableRow>
</TableLayout>

希望对你有帮助

关于java - 居中按钮和 textView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32834864/

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