我的应用有动作溢出,我放了设置按钮,我更换了设置按钮。当我点击设置按钮时,应用程序崩溃
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
finish();
break;
// Something else
case R.id.action_settings:
Intent intent = new Intent(this, Setting.class);
startActivity(intent);
default:
break;
}
return super.onOptionsItemSelected(item);
}
答案 0 :(得分:1)
Whitout知道logcat的输出,我想到的第一件事就是。您是否已将Setting.java添加到AndroidManifest.xml文件中?
<activity
android:name=".Setting">
</activity>