在Android中使AlertActivity全屏

时间:2014-03-11 11:04:38

标签: android android-activity android-alertdialog

如何在android

中使AlertActivity全屏显示

基本上AlertActivityActivity implements DialogInterface ref

5 个答案:

答案 0 :(得分:1)

活动oncreate()方法中的

你可以像这样写

   getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);

在清单中你可以写这个特定的活动来设置主题

android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 

答案 1 :(得分:0)

在活动代码中的清单文件中添加此行

android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"

答案 2 :(得分:0)

在onCreateDialog()方法上尝试:

Dialog dialog=new Dialog(this,android.R.style.Theme_Dark_NoTitleBar_FullScreen)

答案 3 :(得分:0)

在onCreate方法

上使用它
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                WindowManager.LayoutParams.FLAG_FULLSCREEN);

答案 4 :(得分:0)

just add this in your Menifest activity tag which you want to be full screen 

 android:theme="@android:style/Theme.NoTitleBar"