I added this in manifest
theme.dialog <activity android:name=".Disclaimer" android:theme="@android:style/Theme.Dialog"/>
in my activity still I am not getting this as dialog.
Please help to fix it
<activity android:name=".Disclaimer" android:theme="@android:style/Theme.Dialog"/>
You need to add
<activity android:theme="@android:style/Theme.Dialog">in your Manifest file what you are doing is
requestWindowFeature(Window.FEATURE_NO_TITLE);which is for hiding the Title bar of the Activity.