我开发了一个 android 应用程序,我在操作栏中有两个菜单,我为每个菜单做了一个操作,但我只能访问其中一个,这是我的代码
@Override
public boolean onOptionsItemSelected(MenuItem item)
{
Toast.makeText(this, "Studentsite News", Toast.LENGTH_LONG).show();
Intent i = new Intent(this, ssnews.class);
startActivity(i);
return true;
}
public boolean onOptionsItemSelected1(MenuItem item)
{
Toast.makeText(this, "About", Toast.LENGTH_LONG).show();
Intent i = new Intent(this, about.class);
startActivity(i);
return true;
}
你有什么想法来解决它吗?我真的很感激。