I am trying to display my about us page via layout, so I don\'t need any title bar. I tried:
Dialog d = new Dialog(this);
d.setContentView(R.layout.about_us);
d.
Pass a theme to your dialog can remove the title bar for you.
<style name="NoTitleDialog" parent="@android:Theme.Dialog"> <item name="android:windowNoTitle">true</item> </style>
Dialog d = new Dialog(this, R.style.NoTitleDialog);