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.
Dialog d = new Dialog(this, R.style.NoTitleDialog);