我正在TextView
使用
Min_txtvw.setText(String.format(mTimeFormat, hour, min, sec));
现在
average=distance*60*60/seconds
// 我的函数用于查找秒数的平均值我必须从 Min_txtvw 获取时间我像下面那样完成了它,但它给出了NumberformatException
,
try {
String s = Min_txtvw.getText().toString();
double d = Double.valueOf(s.trim()).doubleValue();
System.out.println("average distance is"+d);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
我如何转换该TextView
值并将其转换为 double ?