Android:TextView导致应用崩溃

时间:2012-12-12 03:53:39

标签: android textview

我正在尝试让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)是我写的一个方法,它从给定索引的数组中返回一个整数。

TextView的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:

enter image description here

我不确定你需要多少。

1 个答案:

答案 0 :(得分:3)

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