1、在styles.xml中编写样式,将背景设置为透明
<style name="Fragment_dialog_style" > <item name="android:windowBackground">@color/transparent</item> </style>
2、在onCreate中设置FragmentDialog的样式
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setStyle(android.app.DialogFragment.STYLE_NORMAL, R.style.Fragment_dialog_style); }3、搞定