1

我目前正在为 android 开发游戏。我想在我的类 gameView 上添加一个 textview。这是我的代码:

类 main.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<app.com.GameView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/game_view"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />
<TextView 
        android:id = "@+id/score_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="0"
        android:paddingLeft="15dp"
        />
</FrameLayout>

这是类活动:

public class GameActivity extends Activity {

/** Called when the activity is first created. */
private app.com.GameView gameView ;
private TextView scoreText;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    gameView = (app.com.GameView)findViewById(R.id.game_view);
    scoreText = (TextView)findViewById(R.id.score_text);
    gameView.setScoreText(scoreText);
}

这是类 GameView :

private int score = 0;

 private TextView scoreText;

public void setscoreText(TextView tv){

this.scoreText = tv;
}

但是当我使用 scoreText.setText(""+score) 时,却出现错误异常“CalledFromWrongThreadException: 只有创建视图层次结构的原始线程才能触摸它的视图。”?请帮我?

4

2 回答 2

1

您不能使用整数设置文本。

它首先需要转换为字符串。最简单的方法是:

scoreText.setText(score + "");

或者

scoreText.setText(Integer.toString(score));
于 2012-08-16T08:26:31.603 回答
1

试试这个: scoreText.setText(String.valueOf(score));

编辑 :

我认为您必须使用 Handler 类来发送消息以与 UI 交互。您在名为 LunarLander 的 Android SDK 示例中有一个很好的示例,它也是一个游戏。

我希望对你有所帮助。

于 2012-08-16T08:20:56.880 回答