Есть ли способ сделать часть заголовка настраиваемого диалогового окна невидимой? - PullRequest
0 голосов
/ 22 октября 2010

Просто простая проблема, без понятия о том, как это сделать. Кто-нибудь знает, как / если это можно сделать?

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

EDIT

public void showCustomDialog() {
    Dialog dialog = new Dialog(this);

    dialog.setContentView(R.layout.customdialog);

    TextView thisText = (TextView) dialog.findViewById(R.id.customDialogThisText);
    thisText.setText("This");
    TextView thatText = (TextView) dialog.findViewById(R.id.customDialogThatText);
    thatText.setText("That");
    ImageView image = (ImageView) dialog.findViewById(R.id.customDialogImageView);
    image.setImageResource(R.drawable.icon);

    //Crashes the program with an AndroidRuntimeError
    //dialog.requestWindowFeature(dialog.getWindow().FEATURE_NO_TITLE);

    dialog.show();
}

image

Ответы [ 2 ]

2 голосов
/ 22 октября 2010

Только не вызывайте setTitle (), и заголовок не будет, как этот:

alt text

LayoutInflater factory = LayoutInflater.from(this);
final View textEntryView = factory.inflate(R.layout.alert_dialog_text_entry, null);
new AlertDialog.Builder(AlertDialogSamples.this)
    .setView(textEntryView)
    .setPositiveButton(R.string.alert_dialog_ok, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int whichButton) {

            /* User clicked OK so do some stuff */
        }
    })
    .setNegativeButton(R.string.alert_dialog_cancel, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int whichButton) {

            /* User clicked cancel so do some stuff */
        }
    })
    .create();
0 голосов
/ 03 ноября 2010

Просто позвони dialog.requestWindowFeature (dialog.getWindow () FEATURE_NO_TITLE.); перед настройкой вида диалога dialog.setContentView (R.layout.customdialog);

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...