在我的应用程序中,我在对话框中显示了Seekbar
。
现在我想在Seekbar
中设置间隔和步长。间隔应为0-250,每步应为5分钟。
到目前为止,这是我的代码:
public class seekActivity extends Activity implements OnClickListener, OnSeekBarChangeListener {
SeekBar seekbar;
Button button;
TextView textview;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//set up main content view
setContentView(R.layout.main);
//this button will show the dialog
Button button1main = (Button) findViewById(R.id.Button01main);
button1main.setOnClickListener(this);
}
public void onClick(View v) {
//set up dialog
Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.maindialog);
dialog.setTitle("This is my custom dialog box");
dialog.setCancelable(true);
button = (Button) dialog.findViewById(R.id.Button01);
seekbar = (SeekBar) dialog.findViewById(R.id.seekBar1);
seekbar.setOnSeekBarChangeListener(this);
textview = (TextView) dialog.findViewById(R.id.textView1);
dialog.show();
}
public class SeekBarPreference {
}
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
// TODO Auto-generated method stub
textview.setText(progress + "");
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
};
}
有人能给我一些提示/代码怎么办?
谢谢!
答案 0 :(得分:42)
您必须按如下方式更新onProgressChanged方法。
int stepSize = 5;
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
progress = ((int)Math.round(progress/stepSize))*stepSize;
seekBar.setProgress(progress);
textview.setText(progress + "");
}
答案 1 :(得分:24)
为什么不将SeekBar的最大值设置为50(250/5),然后从SeekBar值到“真实”值进行必要的转换,而不是这样做?
答案 2 :(得分:1)
如果您使用
Math.round((float)progress / stepSize) * stepSize
您的门槛将在两个步骤中间
如果您使用
progress / stepSize * stepSize
滑块将始终跳到左侧。这只会减少除法中的小数。