我在android中使用Marathi语言。将数字设置为textView后,它将以Marathi字体显示。到目前为止还可以。但是当我想对那些从textview获取它的数字做一些操作时。我需要解析整数或双精度。错误显示"无法解析双字符串中的字符串。" 但它适用于英文字体
Double number = (Double)textview.getText();// where textview holds number in Marathi font..
Double.parseDouble(textview.getText());// this is also showing error
是否还有其他方法可以从其他语言中解析数字形式的字符串。
答案 0 :(得分:0)
使用
Double.parseDouble(textview.getText().toString());