我正在尝试从编辑文本中获取值并使用它来设置倒数计时器的时间。我的代码如下。 Log cat表示存在问题 第63行:“b = Long.parseLong(strInput);”
if (!timerHasStarted) {
String strInput = getText(R.id.ttext).toString();
b = Long.parseLong(strInput);
startTime = ((b) * 1000);
text.setText(text.getText() + String.valueOf(startTime / 1000));
countDownTimer = new MyCountDownTimer( startTime, interval);
countDownTimer.start();
答案 0 :(得分:3)
从EditText获取值:
EditText edttext = (EditText)findViewById(R.id.ttext);
String strInput = edttext.getText().toString();
b = Long.parseLong(strInput);