How to make AlertActivity full screen in android
basically AlertActivity is an Activity which implements DialogInterface ref
How to make AlertActivity full screen in android
basically AlertActivity is an Activity which implements DialogInterface ref
In activity oncreate() method, you can write like this:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); In manifest, you can write this that particular activity to set theme:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"