我有一个标题对话框。不使用主题时,它可以工作:
Dialog dialog = new Dialog(this);
dialog.setTitle("My dialog");
但在我应用主题后,它不再显示标题,我无法弄清楚原因。
Dialog dialog = new Dialog(this, R.style.Theme_AppCompat_Light_Dialog);
dialog.setTitle("My dialog");
答案 0 :(得分:0)
尝试DialogBuilder
:
AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.R.style.Theme_AppCompat_Light_Dialog);
builder.setTitle("Dialog");