android – 如何以编程方式为TextView提供5dp行间距

前端之家收集整理的这篇文章主要介绍了android – 如何以编程方式为TextView提供5dp行间距前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想以编程方式更改TextView的行间距.我搜索了一下,发现了setLineSpacing.问题是这个,它有两个参数,我尝试了很多值,但是我无法得到我想要的结果.我只需要给TextView 5dp行空间,我应该在方法中给它5 dp行空间?

解决方法

为什么不能使用setLineSpacing?
这正是我使用的.

基于Android Documentation

public void setLineSpacing (float add,float mult)

Each line will have its height multiplied by mult and have add added to it.

所以这是你可以选择做的:

myTextView.setLineSpacing(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,5.0f,getResources().getDisplayMetrics()),1.0f);

或者你可以修改android:lineSpacingExtra的XML Layout. (见Android Documentation.)

<TextView
    android:id="@+id/txtview"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:lineSpacingExtra="5dp" />
原文链接:https://www.f2er.com/android/317157.html

猜你在找的Android相关文章