Android知识实用控件Android开发那些事

极轻量的可展开和收缩内容的TextView

2016-08-24  本文已影响5392人  世锋日上

非常轻量的可展开和收缩内容的TextView,可用于listview等列表或普通布局情况

项目介绍:

最近在做类似朋友圈的功能,自定义了一个可伸展的textview,给大家开源出来。这是一个支持可展开和收缩内容的TextView,支持在listview等列表使用不错乱,支持在普通局部使用,支持配置展开/收起图标等属性

国际案例:有图有真相 项目地址ExpandableTextViewExample

效果预览图

支持配置属性:

使用方法

dependencies {

compile 'com.jaydenxiao:ExpandableTextView:1.0.0'

}
<dependency>
  <groupId>com.jaydenxiao</groupId>
  <artifactId>ExpandableTextView</artifactId>
  <version>1.0.0</version>
  <type>pom</type>
</dependency>
布局文件
 <jaydenxiao.com.expandabletextview.ExpandableTextView
        android:id="@+id/etv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:animDuration="200"
        android:padding="8dp"
        app:collapseDrawable="@drawable/icon_green_arrow_down"
        app:collapseExpandGrarity="right"
        app:collapseExpandTextColor="@color/main_color"
        app:contentTextColor="@color/gray"
        app:contentTextSize="14sp"
        app:expandDrawable="@drawable/icon_green_arrow_up"
        app:maxCollapsedLines="5"
        app:textCollapse="@string/collapse"
        app:textExpand="@string/expand" />
设置text值

最后附上项目地址ExpandableTextViewExample,欢迎fork and star

更多精彩文章请关注微信公众号"Android经验分享":这里将长期为您分享Android高手经验、中外开源项目、源码解析、框架设计和Android好文推荐!

扫一扫加我哦
上一篇下一篇

猜你喜欢

热点阅读