其他分享
首页 > 其他分享> > 如何在Android环绕下制作TextView并精美调整文本?

如何在Android环绕下制作TextView并精美调整文本?

作者:互联网

当文字很小时,我得到这个:

enter image description here

但是当文字很大时,我得到了这个:

enter image description here

是否可能通过更好地使用空格或自动减小尺寸来调整文本?

这是我的TextView xml:

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/seaGreen"
            android:gravity="center_vertical"
            android:padding="10dp"
            android:textColor="@color/white"
            android:textSize="35sp" />

解决方法:

为此,您需要使用外部库,否则您可以将重力设置为中心

图书馆 :

https://github.com/grantland/android-autofittextview

对于文本对齐

https://github.com/bluejamesbond/TextJustify-Android

https://github.com/programingjd/justified

要么

你可以查看answer

标签:android,android-textview
来源: https://codeday.me/bug/20190702/1356009.html