AlertDialog.Builder z niestandardowym układem i EditText; nie ma dostępu do widoku

101

Próbuję utworzyć okno dialogowe ostrzeżenia z EditTextobiektem. Muszę EditTextprogramowo ustawić początkowy tekst . Oto co mam.

AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
// ...Irrelevant code for customizing the buttons and title
AlertDialog alertDialog = dialogBuilder.create();
LayoutInflater inflater = this.getLayoutInflater();
alertDialog.setContentView(inflater.inflate(R.layout.alert_label_editor, null));
EditText editText = (EditText) findViewById(R.id.label_field);
editText.setText("test label");
alertDialog.show();

Co muszę zmienić, aby mieć prawidłowy EditTextobiekt?

[edytować]

Tak więc user370305 i inni wskazali, że powinienem używać alertDialog.findViewById(R.id.label_field);

Niestety jest tu inny problem. Najwyraźniej ustawienie widoku zawartości na AlertDialogpowoduje awarię programu w czasie wykonywania. Musisz ustawić to na budowniczym.

AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
// ...Irrelevant code for customizing the buttons and title
dialogBuilder.setView(inflater.inflate(R.layout.alert_label_editor, null));
AlertDialog alertDialog = dialogBuilder.create();
LayoutInflater inflater = this.getLayoutInflater();
EditText editText = (EditText) alertDialog.findViewById(R.id.label_field);
editText.setText("test label");
alertDialog.show();

Niestety, kiedy to zrobisz, alertDialog.findViewById(R.id.label_field);teraz wraca null.

[/edytować]

Don Subert
źródło

Odpowiedzi:

238

editText jest częścią alertDialog układu, więc po prostu uzyskaj dostęp editTextw odniesieniu doalertDialog

EditText editText = (EditText) alertDialog.findViewById(R.id.label_field);

Aktualizacja:

Ponieważ w linii kodu dialogBuilder.setView(inflater.inflate(R.layout.alert_label_editor, null));

inflater jest Null .

zaktualizuj swój kod jak poniżej i spróbuj zrozumieć każdą linię kodu

AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
// ...Irrelevant code for customizing the buttons and title
LayoutInflater inflater = this.getLayoutInflater();
View dialogView = inflater.inflate(R.layout.alert_label_editor, null);
dialogBuilder.setView(dialogView);

EditText editText = (EditText) dialogView.findViewById(R.id.label_field);
editText.setText("test label");
AlertDialog alertDialog = dialogBuilder.create();
alertDialog.show();

Aktualizacja 2:

Ponieważ używasz obiektu View utworzonego przez Inflater do aktualizacji komponentów UI, możesz bezpośrednio użyć setView(int layourResId)metody AlertDialog.Builderklasy, która jest dostępna od API 21 i nowszych.

user370305
źródło
22
Możesz to również zrobić jako:dialogBuilder.setView(R.layout.dialog_layout);
SiavA
4
@SiavA ta metoda jest dostępna tylko przez API 21.
Scaraux
Próbowałem wyświetlić okno dialogowe i nie działało w RecyclerView, ale ten tak.
Muneeb Mirza
Możesz użyć, getLayoutInflater()gdy inflaternie jest zdefiniowany.
ukośnik odwrotnyN
1
@saigopi kiedy zastąpisz onClick, pojawią się argumenty (okno dialogowe DialogInterface, identyfikator int). W tej metodzie onClick po prostu przekaż dialog.cancel ();
Minkoo
29

Użyj tego

   AlertDialog.Builder builder = new AlertDialog.Builder(activity);
    // Get the layout inflater
    LayoutInflater inflater = (activity).getLayoutInflater();
    // Inflate and set the layout for the dialog
    // Pass null as the parent view because its going in the
    // dialog layout
    builder.setTitle(title);
    builder.setCancelable(false);
    builder.setIcon(R.drawable.galleryalart);
    builder.setView(inflater.inflate(R.layout.dialogue, null))
    // Add action buttons
            .setPositiveButton("OK", new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int id) {

                    }
                }
            });
    builder.create();
    builder.show();
Naveen Kumar
źródło
powinno być builder.create().show();, możesz sprawdzić builder.show();kod, aby uzyskać więcej szczegółów
Phan Van Linh
9

Możesz pisać:

AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);

 // ...Irrelevant code for customizing the buttons and title

LayoutInflater inflater = this.getLayoutInflater(); 

View dialogView= inflater.inflate(R.layout.alert_label_editor, null);                    
dialogBuilder.setView(dialogView);

Button button = (Button)dialogView.findViewById(R.id.btnName);

   button.setOnClickListener(new View.OnClickListener() {
       @Override
       public void onClick(View view) {

         //Commond here......

       }
   });

EditText editText = (EditText)
dialogView.findViewById(R.id.label_field); 

editText.setText("test label"); 

dialogBuilder.create().show();
Sumit Saxena
źródło
3

Na wypadek, gdyby ktoś chciał tego w Kotlinie:

val dialogBuilder = AlertDialog.Builder(this)
// ...Irrelevant code for customizing the buttons and title
val dialogView = layoutInflater.inflate(R.layout.alert_label_editor, null)
dialogBuilder.setView(dialogView)

val editText =  dialogView.findViewById(R.id.label_field)
editText.setText("test label")
val alertDialog = dialogBuilder.create()
alertDialog.show()

Reposted @ user370305's answer.

Nilesh Deokar
źródło
2

Zmień to:

EditText editText = (EditText) findViewById(R.id.label_field);

do tego:

EditText editText = (EditText)  v.findViewById(R.id.label_field);
Święty Koder
źródło
1
View v=inflater.inflate(R.layout.alert_label_editor, null);
alertDialog.setContentView(v);
EditText editText = (EditText)v.findViewById(R.id.label_field);
editText.setText("test label");
alertDialog.show();
Sercan Ozdemir
źródło
1
/**
 * Shows  confirmation dialog about signing in.
 */
private void startAuthDialog() {
    AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
    AlertDialog alertDialog = dialogBuilder.create();
    alertDialog.show();

    alertDialog.getWindow().setLayout(800, 1400);
    LayoutInflater inflater = this.getLayoutInflater();
    View dialogView = inflater.inflate(R.layout.auth_dialog, null);
    alertDialog.getWindow().setContentView(dialogView);
    EditText editText = (EditText) dialogView.findViewById(R.id.label_field);
    editText.setText("test label");
}
CodeToLife
źródło