如何设置对话框以全屏显示?

我有一个GridView显示大量的图像,当我点击任何图像时,它将在全屏幕对话框中显示完整的图像

请告诉我如何做到这一点

谢谢。

尝试

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

基于这个链接 ,正确的答案(我testing自己)是:

把这段代码放在对话框的构造函数或者onCreate()方法中:

 getWindow().setLayout(WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.MATCH_PARENT); 

另外,将对话框的样式设置为:

 <style name="full_screen_dialog"> <item name="android:windowFrame">@null</item> <item name="android:windowIsFloating">true</item> <item name="android:windowContentOverlay">@null</item> <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item> <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item> </style> 

这可以通过构造函数来实现,例如:

 public FullScreenDialog(Context context) { super(context, R.style.full_screen_dialog); ... 

编辑:以上所有的替代方法是将样式设置为android.R.style.Theme,就是这样。

我发现的最简单的方法

 Dialog dialog=new Dialog(this,android.R.style.Theme_Black_NoTitleBar_Fullscreen); dialog.setContentView(R.layout.frame_help); dialog.show(); 

编辑直到这样的时候,StackOverflow允许我们版本我们的答案,这是一个适用于Android 3及以下的答案。 请不要低估它,因为它现在不适合你,因为它绝对适用于较旧的Android版本。


你只需要添加一行到你的onCreateDialog()方法:

 @Override protected Dialog onCreateDialog(int id) { //all other dialog stuff (which dialog to display) //this line is what you need: dialog.getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN); return dialog; } 
 dialog = new Dialog(getActivity(),android.R.style.Theme_Translucent_NoTitleBar); dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); dialog.setContentView(R.layout.loading_screen); Window window = dialog.getWindow(); WindowManager.LayoutParams wlp = window.getAttributes(); wlp.gravity = Gravity.CENTER; wlp.flags &= ~WindowManager.LayoutParams.FLAG_BLUR_BEHIND; window.setAttributes(wlp); dialog.getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.MATCH_PARENT); dialog.show(); 

尝试这个。