中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

TextView文本截斷與展開動畫

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

要實現TextView文本截斷與展開動畫,可以通過在TextView上設置maxLines屬性來控制文本的最大行數,當文本超過指定行數時,可以添加展開和收起按鈕來切換文本的顯示狀態。

以下是一個示例代碼,實現了TextView文本的截斷與展開功能:

public class ExpandableTextView extends AppCompatTextView {
    private static final int DEFAULT_MAX_LINES = 3; // 默認最大行數
    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"/>

在代碼中可以動態設置ExpandableTextView的maxLines屬性來控制文本的顯示狀態,實現文本的截斷與展開效果。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

横山县| 泽库县| 荆门市| 南漳县| 大同市| 唐河县| 阳江市| 德江县| 略阳县| 桂林市| 平度市| 大城县| 华坪县| 长宁区| 海原县| 电白县| 塘沽区| 禹州市| 渭源县| 枞阳县| 天全县| 文成县| 延寿县| 永吉县| 舟山市| 广德县| 固始县| 济宁市| 高密市| 桐梓县| 荣昌县| 绵阳市| 永福县| 灌阳县| 分宜县| 通榆县| 石楼县| 简阳市| 新沂市| 工布江达县| 泽普县|