[Android CustomView] ExpandableTextView
[Custom View] This is free Custom View for Android. View for use on the same screen as SNS feeds.
- [xml]
<com.aqoong.lib.expandabletextview.ExpandableTextView android:id="@+id/textView" app:collapseLine="2" <!-- standard line count --> app:text_more="show_more" <!-- defalut : "More" --> android:layout_width="match_parent" android:layout_height="wrap_content" /> - [.java]
ExpandableTextView textView = findViewById(R.id.textView); textView.setText('any text', 'show more option text'); textView.setState(ExpandableTextView.STATE.COLLAPSE | EXPAND); - project build.gradle
allprojects { repositories { google() jcenter() ... maven { url "https://jitpack.io"} ... } } dependencies { ... implementation 'com.github.aqoong:ExpandableTextView:x.y.z' ... } 