我是新來與Android平板電腦API級別12.我創建了7英寸AVD與1024 * 600屏幕分辨率。我已經實現了示例應用程序獲取我的屏幕上的選項菜單和後退按鈕。我無法看到選項按鈕和返回按鈕在我的模擬器上。如何獲得android api level 12模擬器上的選項菜單?
我已經實現了選項菜單代碼如下
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.icon: Toast.makeText(this, "You pressed the icon!", Toast.LENGTH_LONG).show();
break;
case R.id.text: Toast.makeText(this, "You pressed the text!", Toast.LENGTH_LONG).show();
break;
case R.id.icontext: Toast.makeText(this, "You pressed the icon and text!", Toast.LENGTH_LONG).show();
break;
}
return true;
}
任何機構請幫我。
在您的病例陳述中,您正在使用'R.id.icon'。您應該使用您在菜單xml文件中爲這些菜單項提供的id。 – Karthik 2011-12-22 05:58:44
你可以檢查右上角的操作欄嗎? – Gopinath 2011-12-22 05:56:17