I use Android to make an application. I have an activity where I create an option menu like below
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.mymenu, menu);
return true;
}
The menu is loaded from an xml file :
<?xml version="1.0" encoding="utf-8"?><menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:title="Item1" android:id="@+id/item1" /></menu>
When I click on item 1, I use onOptionsItemSelected on my activity to work after the click like that :
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch(item.getItemId()) {
case R.id.item1 :
// here, I would like to open a contextual menu
return true;
default :
return super.onOptionsItemSelected(item);
}
}
So, when user click on item 1 I would like to open a contextual menu. First, I don't know if it's possible to open a contextual menu directly without using hold position on screen like several tutorials on internet show it.
If it's possible how can I open a contextual menu in that way ?
I thought to use registerForContextMenu() and openContextMenu() in the case of my item 1 but which view should I put in parameter ?
If someone has an idea about the way to make that, I would like to know how I must do that.
