将编辑文本转换为长倒数计时器

时间:2014-03-25 00:59:21

标签: android android-edittext countdowntimer

我正在尝试从编辑文本中获取值并使用它来设置倒数计时器的时间。我的代码如下。 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();

1 个答案:

答案 0 :(得分:3)

从EditText获取值:

EditText edttext = (EditText)findViewById(R.id.ttext);
String strInput = edttext.getText().toString();
b = Long.parseLong(strInput);