1. ホーム
  2. java

[解決済み] Android Studioでシンボル'menu'のエラーを解決できない

2022-02-26 22:14:12

質問内容

勉強中です 初心者のためのAndroid開発 から Udacity というアプリを作り上げました。 裁判所カウンター でUdacityチームから提供されたXML(activity_main.xml)のコードとJava(MainActivity.java)ファイルのコードを書きました。 Github .

しかし、「Build APK」をクリックすると、2つのエラーが両方ともJavaファイルから発生します。

  1. 次のコードでシンボル 'menu' を解決できません:-)

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }
    
    
  1. シンボル 'action_settings' を解決できない:-)

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
    
        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }
    
        return super.onOptionsItemSelected(item);
    }
    
    

これらのコードのブロックが実行されるとどうなるのかわかりませんが、携帯電話でアプリを実行したいのです!

どのように解決するのですか?

最初の回答にコメントとして追加したいところですが、今のところできません。そこで、android studio 2.3を使用して問題が発生したとき。 私はプロジェクトをクリーンにしてから、再構築しました。

ビルド --> クリーンプロジェクト ビルド --> プロジェクト再構築