萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 安卓開發 >> android清單的使用方法

android清單的使用方法

大家知道android清單嗎?如果不知道的趕緊看看我們給大家整理出來的教程

 

  1. /**
  2. * Invoked when a menu item has been selected
  3. */
  4. @Override
  5. public boolean onOptionsItemSelected(MenuItem item) {
  6.     switch (item.getItemId()) {
  7.  
  8.         // Case: Bring up the Preferences Screen
  9.         case R.id.menu_prefs: // Preferences
  10.             // Launch the Preference Activity
  11.             Intent i = new Intent(this, AppPreferenceActivity.class);
  12.             startActivity(i);
  13.             break;
  14.  
  15.         case R.id.menu...:
  16.             :
  17.             break;
  18.  
  19.     }
  20.     return true;

android清單精彩內容就到這裡了!希望大家可以好好利用!

相關推薦:

Preferences屏幕的XML聲明介紹

copyright © 萬盛學電腦網 all rights reserved