How do I create a full screen mode in XML irregardless of how small what contents are in it?
Here\'s my \"show.xml\" code:
Afaik you can't do fullscreen in xml. You have two choices:
AndroidManifest.xml in activity's sectionandroid:theme="@android:style/Theme.NoTitleBar.Fullscreen"
onCreate() before calling setContentViewrequestWindowFeature( Window.FEATURE_NO_TITLE );
getWindow().setFlags( WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN );