基本Android应用中的setText

时间:2012-05-25 10:33:55

标签: android android-emulator

任何人都知道为什么这个程序不会显示“嘿”字符串(在模拟器中)?相反,它显示“大文本”。

package com.seba.numberShow;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class Main extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.second);

       TextView tv = (TextView) findViewById(R.id.textView1);
       tv.setText("hey");
    }
}

1 个答案:

答案 0 :(得分:0)

你的xml中的

:你的textView id参数与java代码中的不一样, 这里:

TextView tv = (TextView) findViewById(R.id.textView1);

检查资源ID

  

R.id.textView1这将是不同的