我想以编程方式更改TextView的行间距.我搜索了一下,发现了setLineSpacing.问题是这个,它有两个参数,我尝试了很多值,但是我无法得到我想要的结果.我只需要给TextView 5dp行空间,我应该在方法中给它5 dp行空间?
解决方法
为什么不能使用setLineSpacing?
这正是我使用的.
这正是我使用的.
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" />