美文网首页
ChapterView-支持定制标题、内容、着重号等的内容Con

ChapterView-支持定制标题、内容、着重号等的内容Con

作者: 小强开学前 | 来源:发表于2020-11-21 19:22 被阅读0次

项目中往往有一些看起来很简单,做起来头大的样式,用TextView组合起来感觉特别蠢。所以有了这次定制。


<com.john6.chapterview.ChapterView
    android:id="@+id/chapter_view"
    android:background="@android:color/white"
    android:padding="10dp"
    app:want_chapter_title="true"
    app:want_chapter_content="true"
    app:want_chapter_bullet="true"
    app:want_chapter_line="true"
    app:chapter_title_text="@string/chapter_title"
    app:chapter_content_text="@array/chapter_content"
    app:chapter_content_single_line="false"
    app:chapter_content_line_spacing="10dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />
效果

如何引入

implementation 'com.john6.uikit:chapterview:0.1'

项目地址

github

实现思路

待更新...

相关文章

网友评论

      本文标题:ChapterView-支持定制标题、内容、着重号等的内容Con

      本文链接:https://www.haomeiwen.com/subject/cgmeiktx.html