Hallo, ich erstelle einen simplen AppCompatDialog, und setzte den Titel (ein Mal!).
Code: Activity.java
AppCompatDialog dialog = new AppCompatDialog(this, R.style.MyAlertDialogStyle);
dialog.setTitle("Title");
dialog.setContentView(R.layout.dialog_content);
dialog.show();
XML: dialog_content.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Message"
android:layout_margin="20dp"/>
</LinearLayout>
Als Resultat hat der Dialog zwei Titel, wie geht denn das?
[Blockierte Grafik: http://s31.postimg.org/a9r7bbxmv/d_Q0_Afm.jpg]