| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
字体对齐的textview
Android 4.0以上
build.gradle加入dependencies
compile 'me.codeboy.android:align-text-view:2.3.1'
AlignTextView (不支持选择复制,在不需要进行选择复制的情况下使用,排版效果好)
<me.codeboy.android.aligntextview.AlignTextView
android:id="@+id/alignTv"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
CBAlignTextView (新的版本,支持选择复制,排版效果比较的好)
<me.codeboy.android.aligntextview.CBAlignTextView
android:id="@+id/cbAlignTv"
android:textIsSelectable="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
如果需要支持android默认的选择复制,请在xml中加入以下代码:
android:textIsSelectable="true"
CBAlignTextView中增加了以下方法获取TextView的文本内容,请不要使用getText()获取
getRealText()
由于Android L(5.0)之后对中文的版本进行了变化,造成不能由中文标点作为行首,所以为了能够使CBAlignTextView看起来更加工整,建议将中文符号用英文符号替换(默认不转换),可以通过以下三种方式转化
使用转化函数转化标点符号:
CBAlignTextViewUtil.replacePunctuation(String text)
在设置CBAlignTextView文本前(setText),调用以下方法:
setPunctuationConvert(boolean convert)
可以直接在xml布局中进行设置
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cb="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<me.codeboy.android.aligntextview.CBAlignTextView
android:id="@+id/cbAlignTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
cb:punctuationConvert="true"
android:textIsSelectable="true"
android:textSize="14dsp"/>
</LinearLayout>
AlignTextView是旧的版本,不支持选择复制,但是可以自定义最后一行的对齐方式
setAlign(Align align)
设置每一段最后一行对齐方式,默认居左对齐 ,同时也可以在xml注释中设置对其方式:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cb="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<me.codeboy.android.aligntextview.AlignTextView
android:id="@+id/alignTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
cb:align="center"
android:textSize="14dsp"/>
</LinearLayout>
| Back | FazBrowse Home | New Git URL |