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

溫馨提示×

溫馨提示×

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

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

如何在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

山西省| 大名县| 周宁县| 富民县| 大城县| 和田市| 宜宾市| 分宜县| 宁强县| 东台市| 台南市| 开封县| 河北省| 滕州市| 昌平区| 汝阳县| 宣武区| 灵璧县| 碌曲县| 清苑县| 卢氏县| 桂平市| 德钦县| 安多县| 夏河县| 岳普湖县| 青龙| 都兰县| 饶平县| 六安市| 且末县| 北海市| 德惠市| 康定县| 姚安县| 建湖县| 沙雅县| 宝清县| 山丹县| 上杭县| 万年县|