わかりました。メニューのあるアプリケーションを作成しています。3つのメニュー項目があります。1つはWebページに移動し、もう1つはアプリケーションを終了します。終了とaboutは正常に機能しますが、Webページのmenuitemが機能しないため、ここで強制的に閉じます。これがメニューのコードです。
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;
}
誰かが私に何が悪いのか教えてもらえますか?