繁体   English   中英

删除自动文本大小 android 的底部空间

[英]Remove bottom space of auto text size android

我正在使用 Autosizing TextViews,但有时它在文本视图的底部有一个空格线。 有人知道吗?

在此处输入图像描述

在此处输入图像描述

    <TextView
        android:background="@color/colorGrayAlto"
        app:autoSizeMaxTextSize="27sp"
        app:autoSizeMinTextSize="12sp"
        app:autoSizeStepGranularity="2sp"
        app:autoSizeTextType="uniform"
        android:id="@+id/tvVerse"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="130dp"
        android:fontFamily="@font/azbuka_pro"
        android:gravity="center|top"
        android:lineSpacingExtra="3dp"
        android:paddingHorizontal="40dp"
        android:textSize="27sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="The follower of the law, even if he can recite only a small portion (of the law), but, having forsaken passion and hatred and foolishness, possesses true knowledge and serenity of mind, he, caring for nothing in this world or that to come, has indeed a share in the priesthood." />

这是因为您已经定义了重力

 android:gravity="center|top"

它仅将文本粘贴到顶部。 尝试将其更改如下-

 android:gravity="center"

尝试这个:-

<LinearLayout
        android:background="@color/colorGrayAlto"
        android:layout_width="match_parent"
        android:layout_marginTop="130dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_height="wrap_content">

        <TextView
            app:autoSizeMaxTextSize="27sp"
            app:autoSizeMinTextSize="12sp"
            app:autoSizeStepGranularity="2sp"
            app:autoSizeTextType="uniform"
            android:id="@+id/tvVerse"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fontFamily="@font/azbuka_pro"
            android:gravity="center|top"
            android:lineSpacingExtra="3dp"
            android:paddingHorizontal="40dp"
            android:textSize="27sp"
            tools:text="The follower of the law, even if he can recite only a small portion (of the law), but, having forsaken passion and hatred and foolishness, possesses true knowledge and serenity of mind, he, caring for nothing in this world or that to come, has indeed a share in the priesthood." />


    </LinearLayout>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM