How to make an Alert dialog in full screen in Android?
问题 How to make an Alert Dialog in full screen in Android? 回答1: Try below code AlertDialog.Builder alertDialog = new AlertDialog.Builder(this,android.R.style.Theme_Black_NoTitleBar_Fullscreen); 回答2: you must create a custom style for your dialog in your style.xml <style name="DialogTheme" parent="android:Theme.Dialog"> <item name="android:layout_width">fill_parent</item> <item name="android:layout_height">fill_parent</item> <!-- No backgrounds, titles or window float --> <item name="android