Android高级组件之拖动条(SeekBar)

Android高级组件之拖动条(SeekBar)

1.说明
用拖动来改变进度的组件,如可以用来做调节音量,调节亮度的组件
2.XML中的重要属性
android:thumb 改变拖动图标的样式
3.方法
onProgressChanged(SeekBar seekBar, int progress, boolean fromUser)拖动进度条改变时调用
onStartTrackingTouch(SeekBar seekBar) 拖动进度前调用
onStopTrackingTouch(SeekBar seekBar) 拖动进度条后调用
XML代码


<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <TextView
        android:text=""
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/textView"/>
    <SeekBar
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/seekBar"

        android:layout_below="@+id/textView"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"/>
LinearLayout>

Java代码

package com.lhd.gx.myapplication;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.SeekBar;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
    private SeekBar seekBar;
    private TextView textView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView= (TextView) findViewById(R.id.textView);
        seekBar= (SeekBar) findViewById(R.id.seekBar);
        seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
            @Override
            public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
             textView.setText("当前值:"+progress);
            }

            @Override
            public void onStartTrackingTouch(SeekBar seekBar) {
                Toast.makeText(MainActivity.this,"开始滑动",Toast.LENGTH_SHORT).show();
            }

            @Override
            public void onStopTrackingTouch(SeekBar seekBar) {
                Toast.makeText(MainActivity.this,"结束滑动",Toast.LENGTH_SHORT).show();

            }
        });

    }
}

你可能感兴趣的:(Android高级组件之拖动条(SeekBar))