2011-04-28 16 views
13

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(); 
     } 
    }); 
+0

encontré lo que estaba haciendo mal, que necesita para encontrar la ImageButton desde el punto de vista inflada en primer lugar. – Yvonne

Respuesta

21

Trate de poner así en ur código

por ejemplo: -si objeto de su alertdialog es anuncio,

ImageButton ib = (ImageButton) ad.findViewById(R.id.searchbutton); 
    ib.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View v) { 
      Toast.makeText(TravelBite.this, "test", Toast.LENGTH_SHORT).show(); 
     } 
    }); 
+0

gracias, eso fue similar a la solución que encontré antes – Yvonne

1

El código más arriba resultó útil pero utilicé "this" (no "ad") para el contexto:

ImageButton ib = (ImageButton) this.findViewById(R.id.searchbutton); 
    ib.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View v) { 
      Toast.makeText(TravelBite.this, "test", Toast.LENGTH_SHORT).show(); 
     } 

Esto es más fácil para copiar y pegar ;-)

Gracias por el código anterior, sin la solución anterior no habría encontrado la solución.

0

Intente esto en su código.

public void showAlertDialogButtonClicked(View view) { 

    // create an alert builder 
    AlertDialog.Builder builder = new AlertDialog.Builder(this); 
    builder.setTitle("Name"); 

    // set the custom layout 
    final View customLayout = getLayoutInflater().inflate(R.layout.custom_layout, null); 
    builder.setView(customLayout); 

    // add a button 
    builder.setPositiveButton("OK", new DialogInterface.OnClickListener() { 
     @Override 
     public void onClick(DialogInterface dialog, int which) { 
      // send data from the AlertDialog to the Activity 
      EditText editText = customLayout.findViewById(R.id.editText); 
      sendDialogDataToActivity(editText.getText().toString()); 
     } 
    }); 

    // create and show the alert dialog 
    AlertDialog dialog = builder.create(); 
    dialog.show(); 
} 

El uso de este método

<Button android:layout_width="match_parent" 
android:layout_height="wrap_content" android:onClick="showAlertDialogButtonClicked"/> 
Cuestiones relacionadas