标签:des android cWeb style blog http color io os
今天继续昨天没有讲完的Menu的学习,主要是Popup Menu的学习。
弹出式菜单是一种固定在View上的菜单模型。主要用于以下三种情况:
那怎样显示弹出式菜单呢?
如果你在XML文件中定义了菜单,那么以下三步就可显示:
1.用PopupMenu的构造器实例化弹出式菜单,需要当前应用的Context和菜单需要固定到的View。
2.使用MenuInflater填充你的菜单资源到Menu对象中,这个Menu对象是由PopupMenu.getMenu返回的(在API 14和以上 可以用PopupMenu.inflater替代)
3.调用PopupMenu.show()
下面通过一个例子来理解PopupMenu的使用:
1 public void showPopup(View v){ 2 PopupMenu popup = new PopupMenu(this,v); 3 MenuInflater inflater = popup.getMenuInflater(); 4 inflater.inflate(R.menu.popup, popup.getMenu()); 5 popup.setOnMenuItemClickListener(this); 6 popup.show(); 7 } 8 9 @Override 10 public boolean onMenuItemClick(MenuItem arg0) { 11 switch (arg0.getItemId()) { 12 case R.id.item1: 13 Toast.makeText(this, "you have clicked the item 1", Toast.LENGTH_LONG).show(); 14 break; 15 case R.id.item2: 16 Toast.makeText(this, "you have clicked the item 2", Toast.LENGTH_LONG).show(); 17 break; 18 case R.id.item3: 19 Toast.makeText(this, "you have clicked the item 3", Toast.LENGTH_LONG).show(); 20 break; 21 default: 22 break; 23 } 24 return false; 25 }
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical" 6 > 7 8 <TextView 9 android:layout_width="wrap_content" 10 android:layout_height="wrap_content" 11 android:text="@string/clickMe" 12 android:onClick="showPopup" 13 android:clickable="true"/> 14 15 <ImageButton 16 android:layout_width="wrap_content" 17 android:layout_height="wrap_content" 18 android:src="@drawable/ic_launcher" 19 android:clickable="true" 20 android:onClick="showPopup" /> 21 22 </LinearLayout>
标签:des android cWeb style blog http color io os
原文地址:http://www.cnblogs.com/JohnTsai/p/3972499.html