我想在长按按钮时创建一个浮动的上下文菜单。我已经阅读了所有的答案,但我仍然为此疯狂。这是我的代码:
R.menu.menu.xml
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/MnuOpc1" android:title="Opcion1"
android:icon="@drawable/ic_launcher"></item>
<item android:id="@+id/MnuOpc2" android:title="Opcion2"
android:icon="@drawable/ic_launcher"></item>
<item android:id="@+id/MnuOpc3" android:title="Opcion3"
android:icon="@drawable/ic_launcher"></item>
</menu>
OnCreateContextMenu(...)
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuInfo);
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu, menu);
}
onContextItemSelected(...)
@Override
public boolean onContextItemSelected(MenuItem item) {
Log.v("Hello...","I got the switch");
switch (item.getItemId()) {
case R.id.MnuOpc1:
Log.v("Hello...","Option 1");
return true;
case R.id.MnuOpc2:
Log.v("Hello...","Option 2");
return true;
default:
return super.onContextItemSelected(item);
}
我认为上面的所有代码都是正确的但在调用registerForContextMenu时我遗漏了一些东西:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
linear = (LinearLayout) findViewById(R.layout.main);
registerForContextMenu(linear);
我尝试使用registerForContextMenu(getListView());
,但它不起作用,我从Eclipse收到错误。我究竟做错了什么?
答案 0 :(得分:2)
您说您正在尝试为按钮创建上下文菜单,但在onCreate()中,您将上下文菜单注册到LinearLayout。虽然不知道你实际上遇到了什么错误,但不知道是不是这样。