FragmentDialog去掉背景

1、在styles.xml中编写样式,将背景设置为透明

<style name="Fragment_dialog_style" >
    <item name="android:windowBackground">@color/transparentitem>
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、搞定


你可能感兴趣的:(android)