ExpandableTextView展开加动画的textview
经常看新闻或者视频介绍的话经常文字需要有展开功能,如下像这种的话githu如果自己的写的话肯定就是一个button加两个textview或者一个textview动态设置行数(也可自定义view实现),但你也要处理动画问题。这里我找了个库:https://github.com/Manabu-GT/ExpandableTextView使用起来也是非常简单而且要求很低,只需要api>8即...
经常看新闻或者视频介绍的话经常文字需要有展开功能,
如下
像这种的话githu如果自己的写的话肯定就是一个button加两个textview或者一个textview动态设置行数(也可自定义view实现),但你也要处理动画问题。这里我找了个库:
https://github.com/Manabu-GT/ExpandableTextView
使用起来也是非常简单而且要求很低,只需要api>8即可
step 1:
dependencies {
compile 'com.ms-square:expandableTextView:0.1.4'
}
step 2:
最关键的是textview必须设置id为expandable_text,
ImageButton 必须设置id为expand_collapse,有下面几个属性:
maxCollapsedLines (defaults to 8) :当文字展开的允许最大的行数
animDuration :动画持续时间
animAlphaStart (defaults to 0.7f) :渐变动画
expandDrawable :自定义打开的图片,就是点击imagrbutton的打开drawable
collapseDrawable :自定义折叠的图片,就是点击imagrbutton的收缩drawable
最后xml如下:
<com.ms.square.android.expandabletextview.ExpandableTextView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:expandableTextView="http://schemas.android.com/apk/res-auto"
android:id="@+id/expand_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
expandableTextView:maxCollapsedLines="4"
expandableTextView:animDuration="200">
<TextView
android:id="@id/expandable_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:textSize="16sp"
android:textColor="#666666" />
<ImageButton
android:id="@id/expand_collapse"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
android:layout_gravity="right|bottom"
android:background="@android:color/transparent"/>
</com.ms.square.android.expandabletextview.ExpandableTextView>
// sample code snippet to set the text content on the ExpandableTextView
ExpandableTextView expTv1 = (ExpandableTextView) rootView.findViewById(R.id.sample1)
.findViewById(R.id.expand_text_view);
// IMPORTANT - call setText on the ExpandableTextView to set the text content to display
expTv1.setText(getString(R.string.dummy_text1));
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)