I have a problem with the contextual menu, I have a control "ImageButton" when you make a long click displays a context menu.

I need to display the contextual menu with a short click, not a long click, is this possible?

This is the code I currently use, the menu works perfectly.

    private ImageView btnRutas;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.fclientes);

        btnRutas =(ImageView)findViewById(R.id.btnRutas);

        btnRutas.setOnClickListener(this);

        registerForContextMenu(btnRutas); 

    }

    @Override
    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {

        if(v.getId()== R.id.btnRutas) {

            menu.setHeaderIcon(android.R.drawable.ic_menu_more);
            menu.setHeaderTitle("Rutas");
            menu.add(0, 0, 0, "Ruta 1");

        } 

        super.onCreateContextMenu(menu, v, menuInfo);
    } 

    @Override
    public boolean onContextItemSelected(MenuItem item) {

    switch (item.getItemId()){

    case 0:

        function();

        }

    }

Thanks in advance.

link|improve this question

62% accept rate
feedback

1 Answer

up vote 6 down vote accepted

The only way I can think of is to use an onClickListener() as part of the activity:

public class MyActivity extends Activity implements OnClickListener{
 protected void onCreate(Bundle bundle) {
    //Usual Activity Stuff
    View v = (View)findViewById(R.id.view); 
    v.setOnClickListener(this);
 }

 public void onClick(View v) {
  super.onClick(v);
  this.openContextMenu(v);
 }
}

Instead of creating a new View specifically for this, I guess you would use whatever View you wanted this to apply to. I hope this is what you were going for and that this helps.

link|improve this answer
1  
this did work for you, right? – Matt Dec 30 '10 at 1:05
1  
worked perfectly, thanks for everything Matt ... – seba123neo Dec 30 '10 at 2:16
HURRAY! best of luck coding :0) – Matt Dec 30 '10 at 2:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.