hi
here i am trying to create a dialog which is not have a Header and border which should full screen in the window.
this is style to make it full screen...
<resources>
<style name="SettingsDialogTheme">
<item name="android:windowFrame">@null</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowIsTranslucent">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/white</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:windowContentOverlay">@android:color/transparent</item>
</style>
</resources>
We can set the style if u extent the Dialog class like this
super(context,R.style.SettingsDialogTheme);



