0

我试图让 TextView 根据条件显示字符串。但是,当我尝试实现它时,它会导致应用程序停止工作。这是相关的代码/xml:

// class declaration, etc.
TextView textString;

// other code

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_name);
    ...
    textString = (TextView) findViewById(R.id.textId);
    ...

@Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.button_id:
        ...

            if(getNum(0) == 10) {
                textString = (TextView) findViewById(R.id.textId);
                textString.setText("String 1");
            }
            if(getNum(1) == 10) {
                textString = (TextView) findViewById(R.id.textId);
                textString.setText("String 2");
            }
            // etc.

getNum(int index) 是我编写的一种方法,它从给定索引的数组中返回一个整数。

文本视图的 XML 代码:

<TextView
    android:id="@+id/textId"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/other_id"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="25dp" />

为什么会崩溃?

编辑* 这是 LogCat:

在此处输入图像描述

我不确定你需要多少。

4

1 回答 1

3

如果您的代码良好且一致,button = button 和 textview = textview,请清理您的项目。我已经看到通过在 eclipse 中使用 clean 函数解决了这样的问题。

于 2012-12-12T04:24:41.377 回答