gpt4 book ai didi

android - 带有多行文本的按钮在 android studio 中稍微移动到下方

转载 作者:行者123 更新时间:2023-11-29 19:00:09 25 4
gpt4 key购买 nike

我想在 button 上显示多行文本,但多行使其向下移动一点点如何解决?

Buttons

这是 Button 的 XML 代码:-

<TableLayout
android:id="@+id/tab_buttons"
android:layout_width="368dp"
android:layout_alignParentTop="true"
android:layout_height="wrap_content"
tools:layout_editor_absoluteY="0dp"
tools:layout_editor_absoluteX="8dp">
<TableRow>
<Button
android:id="@+id/clock"
android:background="#BAFFBA"
android:text="@string/clock" />
<Button
android:id="@+id/Alarm"
android:text="@string/Alarm"
android:background="#004819"
android:textColor="#FFFFFF"
/>
<Button
android:id="@+id/stopwatch"
android:background="#BAFFBA"
android:text="@string/Stopwatch" />
<Button
android:id="@+id/timer"
android:background="#BAFFBA"
android:text="@string/Timer" />
</TableRow>
</TableLayout>

这是 string 秒表:-

<string name="Stopwatch">Stop&#10;Watch</string>

最佳答案

<TableLayout android:id="@+id/tab_buttons"
android:layout_width="368dp"
android:layout_alignParentTop="true"
android:layout_height="wrap_content"
tools:layout_editor_absoluteY="0dp"
tools:layout_editor_absoluteX="8dp"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<TableRow>
<Button
android:id="@+id/clock"
android:background="#BAFFBA"
android:text="CLOCK" />
<Button
android:id="@+id/Alarm"
android:text="ALARM"
android:background="#004819"
android:textColor="#FFFFFF"
/>
<Button
android:id="@+id/stopwatch"
android:background="#BAFFBA"
android:layout_height="match_parent"
android:text="Stop&#10;Watch" />
<Button
android:id="@+id/timer"
android:background="#BAFFBA"
android:text="TIMER" />
</TableRow>
</TableLayout>

只需将 android:layout_height="match_parent" 应用于秒表 Button。

关于android - 带有多行文本的按钮在 android studio 中稍微移动到下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49256844/

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