Reputation: 99
is it possible to get my currentvalue inside that seekbar whenever am moving?how?
Upvotes: 1
Views: 716
Reputation: 5985
Declare a textview or edittext and place it next to seekbar. then on SeekBar.setOnSeekBarChangeListener's
public void onProgressChanged(SeekBar arg0, int arg1, boolean arg2)
method,change the value of edittext here,
txt_SeekBarValue.setText(Integer.toString(arg1));
Upvotes: 1