Tengo un diseño con un ImageButton que está inflado en un AlertDialog, donde/cómo debería establecer un oyente onClick?cómo configurar un oyente onclick para un botón de imagen en un diálogo de alerta
Aquí está el código He intentado utilizar:
ImageButton ib = (ImageButton) findViewById(R.id.searchbutton);
ib.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(TravelBite.this, "test", Toast.LENGTH_SHORT).show();
}
});
encontré lo que estaba haciendo mal, que necesita para encontrar la ImageButton desde el punto de vista inflada en primer lugar. – Yvonne