好的,我正在创建一个有菜单的应用程序,上面有三个菜单项,一个是访问网页,一个是退出应用程序。退出和关于工作正常,但网页菜单项不起作用,它强制关闭这里是我的菜单代码:
public boolean onCreateOptionsMenu(Menu menu){
super.onCreateOptionsMenu(menu);
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.main_menu, menu);
return true;
}
public boolean onOptionsItemSelected(MenuItem item){
switch (item.getItemId()){
case R.id.about:
startActivity(new Intent("com.example.ABOUT"));
return true;
case R.id.facebook:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("www.facebook.com"));
startActivity(browserIntent);
return true;
}
return false;
}
有人可以告诉我有什么问题吗?