如何将double值存储到TextView
并将TextView
设置为double
结果。我阅读了所有文章,但无法找到解决方案请帮助。
我试过这个,但它没有工作
int x = qtyEditText.getInputType();
int y = rateEditText.getInputType();
double tot = x * y;
amountTextView = new TextView(this);
amountTextView.setText("" + tot);
答案 0 :(得分:0)
您可以使用Double.toString(tot);
答案 1 :(得分:0)
您尝试过:
amountTextView.setText(String.valueOf(tot))
?
它也适用于其他数字类型。