当前位置:   article > 正文

Android - SeekBar - 拖动条(拖动改变数值)_android seekbar设置滑动步进值

android seekbar设置滑动步进值

效果

在这里插入图片描述

在这里插入图片描述

布局

 	<TextView
        android:text="当前数值:"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    <TextView
        android:text="20"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/textView"/>
    <SeekBar
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:id="@+id/seekBar"/>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

在这里插入图片描述

Java

public class MainActivity3 extends Activity {
    private SeekBar seekBar;
    private TextView textView;
    int number = 0;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main3);
        textView= findViewById(R.id.textView);
        seekBar= findViewById(R.id.seekBar);

        //设置最大值(设置不了最小值)
        seekBar.setMax(70);
        //设置初始值
        seekBar.setProgress(20);
        //设置不可滑动
//      seekBarMin.setEnabled(false);
        seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
            //改变数值
            @Override
            public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
                number = progress;
                textView.setText(progress + "");

                //如果需要设置最小值,如下 (注:上面设置最大值现对应要减10:seekBar.setMax(70-10);)
//                progress += 10;
//                textView.setText(progress + "");
            }

            //开始拖动
            @Override
            public void onStartTrackingTouch(SeekBar seekBar) {
                Toast.makeText(MainActivity3.this,"从"+number+"开始滑动",Toast.LENGTH_SHORT).show();
            }

            //停止拖动
            @Override
            public void onStopTrackingTouch(SeekBar seekBar) {
                Toast.makeText(MainActivity3.this,"滑动到:"+number,Toast.LENGTH_SHORT).show();

            }
        });
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/384709
推荐阅读
相关标签