Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose I have a dialog which is opened from java file . I want to set multiline title of these dialog box.

  dialog = new Dialog(context);
  dialog.setContentView(R.layout.issue_attachment_preview);     
  String title=getString(R.string.previewImageDialogTitle)+"\n ["+attachment.filename+"]";
  dialog.setTitle(title);
  dialog.setCancelable(true);   

But it does not display title in multiline , please suggest me any usable link or example.

share|improve this question

1 Answer

up vote 3 down vote accepted

Add

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

and add the multiline textview on top of your dialog layout which will work as title

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.