Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android開發入門(十五)使用菜單 15.3 上下文菜單

Android開發入門(十五)使用菜單 15.3 上下文菜單

編輯:Android開發教程

在上一節,我們已經知道了在按MENU鍵的時候,如何顯示選項菜單。但是,除了選項菜單,你也可以顯示 一個上下文菜單。上下文菜單通常是和activity中的組件相關聯的。當用戶長按一個組件的時候,它的上下 文菜單就會被觸發。例如,用戶長按一個Button,一個上下文菜單就有可能被顯示。

如果想要把一個 組件與一個上下文菜單聯系在一起,就需要在組件上面調用setOnCreateContextMenuListener()。

下 面展示如何顯示一個上下文菜單(Context Menu)。

1. 使用之前的工程,修改main.xml。

<?xml version="1.0" encoding="utf-8"?>    
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" >    
       
    <TextView 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="@string/hello" />    
           
    <Button 
        android:id="@+id/button1" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:text="Click and hold on it" />    
       
</LinearLayout>

2. 在MenusActivity.java中添加一些代碼。

public class MenusActivity extends Activity {    
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) {    
        super.onCreate(savedInstanceState);    
        setContentView(R.layout.main);    
               
        Button btn = (Button) findViewById(R.id.button1);    
        btn.setOnCreateContextMenuListener(this);    
    }    
           
    @Override 
    public void onCreateContextMenu(ContextMenu menu, View view,    
    ContextMenuInfo menuInfo)    
    {    
         super.onCreateContextMenu(menu, view, menuInfo);    
         CreateMenu(menu);    
    }    
           
    @Override 
    public boolean onCreateOptionsMenu(Menu menu) {    
        ......    
    }    
           
    @Override 
    public boolean onOptionsItemSelected(MenuItem item)    
    {    
         return MenuChoice(item);    
    }    
           
    private void CreateMenu(Menu menu)    
    {    
        ......      
    }    
       
    private boolean MenuChoice(MenuItem item)    
    {    
        ......    
    }    
       
}

3. 按F11在模擬器上面調試。當點擊Button並維持一段時間後,上下文菜單顯出出來了。

在上面的例子中,我們調用了button的setOnCreateContextMenuListener()方法, 是button與上下文菜單關聯到了一起。

當上下文菜單中了某一項被點擊時,onContextItemSelected ()這個方法就會被觸發。

注意,上下文菜單中的快捷鍵是不起作用的。如果想要使快捷鍵起作用,需 要調用setQuertyMode()方法。

private void CreateMenu(Menu menu)    
   {    
       menu.setQwertyMode(true);    
       MenuItem mnu1 = menu.add(0, 0, 0, "Item 1");    
       {    
           mnu1.setAlphabeticShortcut('a');    
           mnu1.setIcon(R.drawable.ic_launcher);    
       }    
       ......    
   }
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved