为什么是TextView test = (TextView) findViewById(R.id.testTextView); test.getText(); 生成空指针异常? id是正确的,在我的XML布局文件中正确声明了testTextView。 最佳答案 如果传递有效ID,则findViewById返回null的唯一原因是您设置了错误的内容 View (使用setContentView)或根本没有设置内容 View 。