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

溫馨提示×

溫馨提示×

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

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

如何在SeekBar上實現非線性滑動

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

要在SeekBar上實現非線性滑動,可以通過自定義SeekBar的Thumb來實現。以下是一個示例代碼,用于實現非線性滑動的SeekBar:

  1. 創建一個自定義的SeekBar類,繼承自SeekBar:
public class NonLinearSeekBar extends SeekBar {

    public NonLinearSeekBar(Context context) {
        super(context);
    }

    public NonLinearSeekBar(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public NonLinearSeekBar(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (!isEnabled()) {
            return false;
        }

        float x = event.getX();
        float width = getWidth();
        float progress = getMax() * x / width;

        if (progress < 0.2 * getMax()) {
            setProgress((int) (0.2 * getMax()));
        } else if (progress > 0.8 * getMax()) {
            setProgress((int) (0.8 * getMax()));
        } else {
            setProgress((int) progress);
        }

        if (event.getAction() == MotionEvent.ACTION_UP) {
            setProgress(getProgress());
        }

        return true;
    }
}
  1. 在xml布局文件中使用自定義的SeekBar:
<com.example.myapplication.NonLinearSeekBar
    android:id="@+id/nonLinearSeekBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:max="100"
    android:progress="50"/>

通過以上代碼,在非線性SeekBar中,當Thumb滑動到進度條的20%和80%之間時,將會停止滑動。你可以根據自己的需求調整這個比例來實現不同的非線性滑動效果。

向AI問一下細節

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

AI

淮安市| 临潭县| 全州县| 信宜市| 台北县| 三穗县| 淅川县| 邵东县| 凤山县| 新蔡县| 龙胜| 兴国县| 临泽县| 资溪县| 清涧县| 拜泉县| 扎兰屯市| 阆中市| 比如县| 江城| 靖宇县| 崇阳县| 大关县| 高雄县| 城市| 瑞丽市| 岳普湖县| 秦皇岛市| 元氏县| 馆陶县| 镇巴县| 广安市| 潜江市| 博爱县| 卢湾区| 阳泉市| 澄城县| 松江区| 黎平县| 武乡县| 天门市|