两端对齐的TextView

做Android的时候一直为TextView的两端对齐烦恼,看了一些网上的代码,很多仅仅是对英文或中文有效果,中英文混合后依旧无效,于是自己自定义实现了一个TextView,效果还不错,地址:https://github.com/androiddevelop/AlignTextView


系统要求

Android 4.0以上

快速使用

    <cn.androiddevelop.aligntextview.lib.AlignTextView
        android:id="@+id/alignTv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="@dimen/small_font" />

相关方法

setAlign(Align align)

设置每一段最后一行对齐方式,默认居左对齐

使用说明

AlignTextView在对齐的时候不会对英文单词等进行考虑,使其连在一起。


更多相关开源项目请访问:http://open.codeboy.me


你可能感兴趣的:(两端对齐的TextView)