android数据库,文本字段和保存表单

时间:2016-03-07 19:32:27

标签: android textview

如何将double值存储到TextView并将TextView设置为double结果。我阅读了所有文章,但无法找到解决方案请帮助。 我试过这个,但它没有工作

int x = qtyEditText.getInputType();
int y = rateEditText.getInputType();
double tot = x * y;
amountTextView = new TextView(this);
amountTextView.setText("" + tot);

2 个答案:

答案 0 :(得分:0)

您可以使用Double.toString(tot);

答案 1 :(得分:0)

您尝试过: amountTextView.setText(String.valueOf(tot))

它也适用于其他数字类型。