gpt4 book ai didi

android - 如何在不改变android中按钮大小的情况下使按钮内的文本居中

转载 作者:行者123 更新时间:2023-12-03 18:10:42 25 4
gpt4 key购买 nike

我想要 按钮内的文本以适合一行 ,但有问题:

problem screenshot

最佳答案

要在您的布局中做到这一点,您可以使用以下 三种方式

  • android:singleLine="true"在按钮中。
  • 更改字体大小
  • 你可以减少 margin .

  • 检查这个例子:
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll1"
    style="@style/Widget.CardContent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="20dp"
    android:background="@color/colorAccent"
    android:orientation="vertical">

    <LinearLayout
    android:id="@+id/ll2"
    style="@style/Widget.CardContent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="20dp"
    android:orientation="vertical"
    android:weightSum="2">

    <Button
    android:id="@+id/Button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:ellipsize="end"
    android:gravity="center"
    android:padding="5dp"
    android:singleLine="true"
    android:text="first button you must click 1"
    android:textSize="@dimen/font_normal_size"
    android:textStyle="bold" />

    <Button
    android:id="@+id/Button2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:ellipsize="end"
    android:gravity="center"
    android:padding="5dp"
    android:singleLine="true"
    android:text="first button you must click 2"
    android:textSize="@dimen/font_normal_size"
    android:textStyle="bold" />
    </LinearLayout>
    </LinearLayout>

    关于android - 如何在不改变android中按钮大小的情况下使按钮内的文本居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36147380/

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