嗨我正在尝试运行简单的活动我的点击按钮看起来像这样
public void onClick(View view){
Intent intent = new Intent(this,SecondActivity.class);
intent.putExtra("TextToGive", "Hello second activity");
startActivityForResult(intent, 1);
}
当我单击按钮时,我得到 NullPointerException no activity found.If 我删除了 intent.putExtra("TextToGive", "Hello second activity"); 它有效,有人知道为什么会这样吗?