ANDROID 產生快顯功能表方法

來源:互聯網
上載者:User

一、先對某一個控制項註冊,使得他能夠產生菜單

registerForContextMenu(this.gallery); //註冊一個gallery空間的的菜單

 

二、當觸發控制項的時候,建立菜單

@Override

  public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { 
      if (v == gallery) { //判斷是哪個ListView  www.2cto.com
          //擷取當前長按的下標 
       Toast.makeText(getApplicationContext(), "111", 0).show();
       menu.add(0, 1, 0, "上傳圖片");
       menu.add(0, 2, 0, "刪除圖片");
      
//          int i = ((MyGallery)menuInfo).posi;  
//        
//          //具體操作 
//          menu.setHeaderTitle(list.get(i).get("TITLE").toString()).setHeaderIcon(R.drawable.icon); 
//          menu.add(0, menu.FIRST, Menu.NONE, "Item 1"); 
//        
//          if (i == 2) { 
//              menu.add(0, menu.FIRST+1, Menu.NONE, "Item 2").setCheckable(true); 
//              menu.add(0, menu.FIRST+2, Menu.NONE, "Item 3").setShortcut(’3′, ’3′); 
//          } else { 
//              SubMenu sub = menu.addSubMenu("Submenu"); 
//              sub.add("Submenu Item"); 
//          } 
      } 
      super.onCreateContextMenu(menu, v, menuInfo); 
  }

三、針對菜單的選項
 @Override
 public boolean onContextItemSelected(MenuItem item) {
  int i = gallery.getSelectedItemPosition();
     Toast.makeText(getApplicationContext(), item.getTitle(), 0).show();
     Toast.makeText(getApplicationContext(), i+"", 0).show();
     return super.onContextItemSelected(item);
 }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.