MainActivity.java action_settings无法解析或不是字段

时间:2015-03-02 18:18:21

标签: android eclipse

这是我现在在MainActivity.java中遇到的唯一错误。 该行" if(id == R.id.action_settings)"这是由eclipse创建的,它给出了错误:" action_settings无法解析或者不是字段" 感谢您帮助解决问题

 package chapter.two.hello_world;

 import android.support.v7.app.ActionBarActivity;
 import android.os.Bundle;
 import android.view.Menu;
 import android.view.MenuItem;
 import android.widget.TextView;


 public class MainActivity extends ActionBarActivity {

 WorldGen earth = new WorldGen("Earth", 5973, 9.78);

 @Override
 protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    setStartUpWorldValues();
    }

 protected void setStartUpWorldValues(){
    earth.setPlanetColonies(1);
    earth.setPlanetMilitary(1);
    earth.setColonyImmigration(1000);
    earth.setBaseProtection(100);
    earth.turnForceFieldOn();
    }

 protected void setStartUpScreenText(){
    TextView planetNameValue = (TextView)findViewById(R.id.dataView1);
    planetNameValue.setText(earth.planetName);
    TextView planetMassValue = (TextView)findViewById(R.id.dataView2);
    planetMassValue.setText(String.valueOf(earth.planetMass));
    TextView planetGravityValue = (TextView)findViewById(R.id.dataView3);
    planetGravityValue.setText(String.valueOf(earth.planetGravity));
    TextView planetColoniesValue =  (TextView)findViewById(R.id.dataView4);
    planetColoniesValue.setText(String.valueOf(earth.planetColonies));
    TextView planetPopulationValue = (TextView)findViewById(R.id.dataView5);
    planetPopulationValue.setText(String.valueOf(earth.planetPopulation));
    TextView planetMilitaryValue = (TextView)findViewById(R.id.dataView6);
    planetMilitaryValue.setText(String.valueOf(earth.planetMilitary));
    TextView planetBaseValue = (TextView)findViewById(R.id.dataView7);
    planetBaseValue.setText(String.valueOf(earth.planetBases));
    TextView planetForceFieldValue = (TextView)findViewById(R.id.dataView8);
    planetForceFieldValue.setText(String.valueOf(earth.planetProtection));

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@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();
    if (id == R.id.action_settings) { // the error is here
        return true;
    }
    return super.onOptionsItemSelected(item);
  }
 }

2 个答案:

答案 0 :(得分:1)

您的R.menu.main xml文件很可能不包含具有@ + id / action_settings作为其ID的项目。检查你的R.menu.main xml文件,确保设置了action_settings id。

答案 1 :(得分:1)

正如说Quanturium这意味着你没有这个名字的项目。但是当你在谈论“action_setting”时,你实际上是在讨论XML主文件中不常见的特殊项目。

注意:我不是Android中的“专业人士”,所以我希望这会有所帮助。

查看Android Studio左侧的文件夹。你有一个名为“res”。在里面你有绘画,价值等...你有一个名为“菜单”? 如果没有在“res”上创建一个:clic,请选择“New / Android ressource directory”并将“menu”作为名称。 现在我们有一个包含菜单数据的文件夹,比如action_settings等......

现在,在这个新文件夹上右键单击并选择“新建/菜单资源文件”。 您要提供的名称必须是活动的名称。 例如,你有一段名为“Creation”的Java代码,活动(在布局文件夹中)被命名为“activity_creation.xml”,因此在菜单文件夹中你必须提供“创建”作为文件的名称,这将是创建为“creation.xml”。

现在,在这个文件中你必须写:

 <menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="net.XXX.YYY.ZZZZ" >
<item android:id="@+id/action_settings"
    android:title="@string/action_settings"
    android:orderInCategory="100"
    android:showAsAction="never" />

其中XXXX和YYYY是您的应用程序的目录(与您在Java代码顶部写的yu相同),ZZZZ是活动的名称(因此在我的示例中为“创建”)

知道你有一个“菜单”和一个action_settings,在你的代码中,以下几行就可以了:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}
//--------------------------------------------------------------------------------
@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();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}

了解Android中每个文件夹的目标有点困难但有必要,因为很多“小问题”来自于此。