/** Called when the user clicks the Send button */
public void sendMessage(View view) {
Intent intent = new Intent(this, DisplayMessageActivity.class);
EditText editText = (EditText) findViewById(R.id.edit_message);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}
我收到此错误:“无法解析视图类型
答案 0 :(得分:0)
如果您正在使用Eclipse来完成Android开发人员工具包教程,则可能会出现此特定问题,并且可以通过执行“全部保存”来强制执行项目的“重建”。至少,这对我有用。您也可以在清理项目后调用重建。菜单栏:Project -> Clean...
选择您的项目,然后单击“确定”。
答案 1 :(得分:0)
在导入部分
上试试这个导入android.view.View;
答案 2 :(得分:0)
确保括号{}在正确的位置。这只是发生在我身上,是因为它实际上在另一个方法声明中。