0

我一直在为 android 开发一个带有 opengles 的游戏,并显示了一个 glsurfaceview。我还通过使用显示了一个文本视图

addContentView(mytextview, new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT) );

mytextview 包含一个字符串,该字符串由一个字符串加上一个 int 的解析值组成。例如类似的东西

 mytextview = new TextView(this);
 mytextview.setText("Score: " + Integer.toString(score) );

文本视图和整数值显示,但我的问题是当整数值更改时如何更新它?

4

1 回答 1

0

mytextview.setText("Score: " + Integer.toString(score) ); 每次分数变化时,您都必须打电话。

于 2011-02-23T20:55:44.677 回答