Android AlertDialog setText

#java #android #android-alertdialog

#java #Android #android-alertdialog

Вопрос:

Привет, у меня есть alertdialog, который создается при нажатии на элемент в listview, я пытаюсь получить имя файла, описание, автора и т.д. Из моей активности и отобразить его в моем alertdialog, но .setText не будет работать, может кто-нибудь, пожалуйста, помочь. Спасибо, вот мой код:http://pastebin.com/FzWSPp5e

Ответ №1:

это совсем не то, как вы правильно используете диалоги в Android. вам необходимо определить ваши диалоги в переопределении onCreateDialog, как описано в документации:

 http://developer.android.com/guide/topics/ui/dialogs.html
  

следуя этому руководству, вы должны быть в состоянии устранить вашу проблему. вот пример, который я только что скопировал и вставил из случайного приложения:

 @Override
protected Dialog onCreateDialog(int id, Bundle b) {
    LayoutInflater inflater = (LayoutInflater) this.getSystemService(this.LAYOUT_INFLATER_SERVICE);
    AlertDialog.Builder builder = null;
    switch(id) {
        case DIALOG_BLOCK_SIZE:
        {
            Dialog dialog = new Dialog(this);
            final View dialogLayout = inflater.inflate(R.layout.dialog_block_size, null);
            builder = new AlertDialog.Builder(this);
            builder.setView(dialogLayout);
            builder.setTitle("Set Block Size");

            final EditText blockIn = (EditText)dialogLayout.findViewById(R.id.block_size_in);
            blockIn.setText(new Integer(pref.getInt("block_size", 6)).toString());

            builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        SharedPreferences.Editor editor = pref.edit();
                        editor.putInt("block_size", new Integer(blockIn.getText().toString()));
                        editor.commit();
                        ////////TODO///////////
                        //notify MinutemaidService that we have changed the block_size
                        dialog.dismiss();
                    }
                });
            builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        dialog.cancel();
                    }
                });
            dialog = builder.create();
            return dialog;
        }
        default:
        {
            return null;
        }
    }
    return dialog;
}
  

с помощью приведенного выше кода вы можете вызвать ShowDialog(DIALOG_BLOCK_SIZE), чтобы отобразить диалоговое окно. также обратите внимание, что диалоговые окна создаются один раз и отображаются снова и снова. чтобы принудительно перестроить диалоговое окно, вызовите removeDialog(int) перед вызовом ShowDialog(int). переопределение onpreparredialog() — лучший метод, но использование removeDialog работает, и это проще.