您好,登錄后才能下訂單哦!
下載ExpandableTextView庫,新建項目關聯庫。使用關鍵點:要把ExpandableTextView放在LinearLayout布局下,否則點擊展開,收起按鈕,文本不能展開,收起。
在activity代碼
ExpandableTextView expandTextView= (ExpandableTextView) findViewById(R.id.expand_text_view);
expandTextView.setText("注意:ExpandableTextView要放在線性布局里,這樣文本才能上下縮放!maxCollapsedLines設置行數,如果超過按鈕顯示,文本收起;contentTextSize文本大小;contentTextColor文本顏色;expandDrawable展開按鈕圖片;expandText展開按鈕文本;collapseDrawable折疊按鈕圖片;collapseText折疊按鈕文本;DrawableAndTextGravity按鈕位置 ,center,left,right可選");
xml布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<!-- 注意:ExpandableTextView要放在線性布局里,這樣文本才能上下縮放! -->
<!-- maxCollapsedLines設置行數,如果超過按鈕顯示,文本收起 -->
<!-- contentTextSize文本大小 -->
<!-- contentTextColor文本顏色 -->
<!-- expandDrawable展開按鈕圖片 -->
<!-- expandText展開按鈕文本 -->
<!-- collapseDrawable折疊按鈕圖片 -->
<!-- collapseText折疊按鈕文本 -->
<!-- DrawableAndTextGravity按鈕位置 ,center,left,right可選 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<me.chensir.expandabletextview.ExpandableTextView
android:id="@+id/expand_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:maxCollapsedLines="2"
app:contentTextSize="20sp"
app:contentTextColor="#ff0000"
app:expandText="顯示"
app:collapseText="隱藏"
app:DrawableAndTextGravity="center">
</me.chensir.expandabletextview.ExpandableTextView>
</LinearLayout>
</RelativeLayout>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。