这正是我使用的.
基于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" />总结
以上是内存溢出为你收集整理的android – 如何以编程方式为TextView提供5dp行间距全部内容,希望文章能够帮你解决android – 如何以编程方式为TextView提供5dp行间距所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)