91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

安平县| 绩溪县| 江源县| 进贤县| 泌阳县| 临夏市| 渝中区| 榆社县| 甘泉县| 罗山县| 盐山县| 九寨沟县| 汤原县| 广西| 济阳县| 宜兴市| 长沙县| 仁寿县| 辽源市| 辉县市| 盐亭县| 甘孜县| 伊吾县| 镇安县| 边坝县| 酒泉市| 嵩明县| 蒙山县| 天门市| 山东省| 永和县| 张北县| 拉孜县| 洛阳市| 准格尔旗| 克拉玛依市| 天全县| 长沙市| 吴江市| 沁水县| 武穴市|