0

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

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");
    }
}
4

1 回答 1

0

在您的 xml 中:您的 textView id 参数与 java 代码中的不同,这里:

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

检查资源 ID

R.id.textView1 这会有所不同

于 2016-01-30T06:50:32.727 回答