我在一个应用程序上工作了很长时间,到目前为止我使用的主题是顶部的操作栏。
现在在操作栏中我有 3 个点符号(使用银河系)。
我决定不再需要操作栏,当我通过清单将其取下时,我没有像我应该的那样得到它。
任何想法为什么?
谢谢你。
这是活动的代码:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//initialize
this.spMain = getSharedPreferences("main", 0);
this.numofcourses = this.spMain.getInt("numofcources", 0);
this.tvTotalAvarge = (TextView)findViewById(R.id.totalAvarage);
this.mainLayout = (LinearLayout)findViewById(R.id.mainlayout);
if(this.numofcourses ==0) {
Intent intent = new Intent(this,Newuser.class);
startActivity(intent);
finish();
}
else this.loadCourses();
}
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
public boolean onOptionsItemSelected(MenuItem item) {
Intent intent =new Intent(this, Newuser.class);
startActivity(intent);
finish();
return true;
}