溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

TextView文本截?cái)嗯c展開動畫

發(fā)布時間:2024-08-21 16:11:21 來源:億速云 閱讀:79 作者:小樊 欄目:移動開發(fā)

要實(shí)現(xiàn)TextView文本截?cái)嗯c展開動畫,可以通過在TextView上設(shè)置maxLines屬性來控制文本的最大行數(shù),當(dāng)文本超過指定行數(shù)時,可以添加展開和收起按鈕來切換文本的顯示狀態(tài)。

以下是一個示例代碼,實(shí)現(xiàn)了TextView文本的截?cái)嗯c展開功能:

public class ExpandableTextView extends AppCompatTextView {
    private static final int DEFAULT_MAX_LINES = 3; // 默認(rèn)最大行數(shù)
    private static final int ANIMATION_DURATION = 200; // 動畫時長

    private int maxLines;
    private boolean isExpanded = false;

    public ExpandableTextView(Context context) {
        super(context);
        init();
    }

    public ExpandableTextView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ExpandableTextView);
        maxLines = a.getInt(R.styleable.ExpandableTextView_maxLines, DEFAULT_MAX_LINES);
        a.recycle();
        init();
    }

    private void init() {
        setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                toggle();
            }
        });
        setMaxLines(maxLines);
    }

    private void toggle() {
        int targetLines = isExpanded ? maxLines : Integer.MAX_VALUE;
        ObjectAnimator animator = ObjectAnimator.ofInt(this, "maxLines", targetLines);
        animator.setDuration(ANIMATION_DURATION);
        animator.start();
        isExpanded = !isExpanded;
    }

    public int getMaxLines() {
        return maxLines;
    }

    public void setMaxLines(int maxLines) {
        this.maxLines = maxLines;
        super.setMaxLines(maxLines);
    }
}

在XML布局文件中使用ExpandableTextView:

<com.example.ExpandableTextView
    android:id="@+id/expandableTextView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Your long text here..."
    app:maxLines="3"
    android:ellipsize="end"
    android:maxLines="3"
    android:lines="3"
    android:background="@android:color/white"/>

在代碼中可以動態(tài)設(shè)置ExpandableTextView的maxLines屬性來控制文本的顯示狀態(tài),實(shí)現(xiàn)文本的截?cái)嗯c展開效果。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI