在addcontentview中更新变量 - android

时间:2011-02-23 20:48:10

标签: android opengl-es hud

我一直在开发一款带有opengles for android的游戏,并展示了glsurfaceview。我还使用

显示了一个textview
addContentView(mytextview, new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT) );

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

之类的东西
 mytextview = new TextView(this);
 mytextview.setText("Score: " + Integer.toString(score) );

textview和整数值显示但是 我的问题是当整数值改变时如何更新?

1 个答案:

答案 0 :(得分:0)

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