在android开发中共有两种方式完成,使用下面的2代码
代码一
@Override
public boolean onContextItemSelected(MenuItem item)
{
switch (item.getItemId())
{
case R.id.pick_camera:
break;
}
return super.onContextItemSelected(item);
}
代码二
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo)
{
getMenuInflater().inflate(R.menu.image_options, menu);
super.onCreateContextMenu(menu, v, menuInfo);
}
在 菜单资源路径创建image_options.xml
create image_options.xml in menu folder of resource.
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/pick_camera"
android:title="Use Camera">
</item>
</menu>
原文地址:http://www.itmmd.com/201411/149.html
该文章由 萌萌的IT人 整理发布,转载须标明出处。
android 通过点击上下文菜单采用intent启动activity
原文地址:http://blog.csdn.net/androidmylove/article/details/42126313