android studio
Drawerをクリックしたら、反応するように作っています
Navigation drawerのアイテムをクリックしても、インデントが起動しません。
発生している問題・エラーメッセージ
エラーメッセージ
該当のソースコード
Main.Java
1 ... 2 public boolean onOptionsItemSelected(MenuItem item) { 3 int id = item.getItemId(); 4 5 //noinspection SimplifiableIfStatement 6 if (id == R.id.action_settings) { 7 return true; 8 } 9 10 return super.onOptionsItemSelected(item); 11 } 12 13 @SuppressWarnings("StatementWithEmptyBody") 14 public boolean onNavigationItemSelected(MenuItem item) { 15 int id = item.getItemId(); 16 17 if (id == R.id.point) { 18 Intent intent = new Intent(getApplication(), MapsView.class); 19 startActivity(intent); 20 } else if (id == R.id.nav_send) { 21 String url = "http://example.com/"; 22 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); 23 startActivity(Intent.createChooser(intent, "Browse with")); 24 } 25 26 DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); 27 drawer.closeDrawer(GravityCompat.START); 28 return true; 29 } 30} 31
試したこと
https://neet-rookie.hatenablog.com/entry/2019/09/09/142358のページの中の
”レイアウトファイル内の、NavigationDrawerの下のNavigationViewをinclude後へ移動せよ,,
の意味が分かりません。
理解力がなくてすいません。
補足情報(ツールのバージョンなど)
android studio 3.5.3
実機での起動もしました
回答1件
あなたの回答
tips
プレビュー