Android 中带有两组文本的按钮

发布于 2024-11-06 17:05:34 字数 62 浏览 0 评论 0原文

有谁知道如何在 Android 中设置按钮的文本来保持一些文本左对齐,另一个文本右对齐?

谢谢

does anybody know how can I se the text of a Button in Android to hold some text aligned to the left, and another to the right?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

屋檐 2024-11-13 17:05:34

做一个自定义按钮。

这真的很简单,只需执行以下操作:

<LinearLayout... android:orientation="horizontal" android:onClick="clickButtonMethod" android:clickable="true">

<TextView android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:text="Align left" android:gravity="left">

<TextView android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:text="Align right" android:gravity="right">

</LinearLayout>

Do a custom button.

It's really easy just do something like:

<LinearLayout... android:orientation="horizontal" android:onClick="clickButtonMethod" android:clickable="true">

<TextView android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:text="Align left" android:gravity="left">

<TextView android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:text="Align right" android:gravity="right">

</LinearLayout>
一影成城 2024-11-13 17:05:34

您应该使用 ImageView 或 ImageButton 而不是 Button。

You should use ImageView or ImageButton instead of Button.

知足的幸福 2024-11-13 17:05:34

根据需要,在这些文本之间留出空间,该按钮的宽度为 WRAP_CONTENT。

Give the space between these text as you want the width of that button is WRAP_CONTENT.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文