Android SeekBar is a kind of ProgressBar with draggable thumb. The end user can drag the thum left and right to move the progress of song, file download etc.
The SeekBar.OnSeekBarChangeListener interface provides methods to perform even handling for seek bar.
Android SeekBar and RatingBar classes are the sub classes of AbsSeekBar.
Android SeekBar Example
activity_main.xml
Drag the seek bar from the pallete, now activity_main.xml will look like this:
Activity class
Let’s see the Activity class displaying seek bar and performing event handling.
import android.widget.SeekBar;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
SeekBar seekBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
seekBar=(SeekBar)findViewById(R.id.seekBar);
seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
Toast.makeText(getApplicationContext(),“seekbar progress: “+progress, Toast.LENGTH_SHORT).show();
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
Toast.makeText(getApplicationContext(),“seekbar touch started!”, Toast.LENGTH_SHORT).show();
}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
Toast.makeText(getApplicationContext(),“seekbar touch stopped!”, Toast.LENGTH_SHORT).show();
}
});
}
}
Output:
Leave A Comment