Android开发新手,我有一个简单的问题。 我有一个跟踪点的文本视图。我只需要在总数中再添加20个点,然后在文本视图中显示它。例如,如果在文本视图中它是100,我想添加20然后将其显示为120.我需要一个循环吗?这就是我所拥有的,但它只增加了20而没有别的。
int points =0;
points = points + 20;
textView2.setText(Integer.toString(points));
答案 0 :(得分:0)
int current = Integer.parseInt(textView2.getText());
int total = current + points;
textView2.setText(String.valueOf(total));
答案 1 :(得分:0)
int points = 0;
while(true){
textView2.setText(points.ToString());
points = popints + 20;
}
这将为无穷大添加20(这样循环不会停止。Yoi可能会添加一些条件,如:
if(points > 1000){
break;
}
要停止它或使用for
循环而不是while
循环