這個問題很讓人糾結,因為我要在popopwindows里面使用fragment,但是在popopwindows里面找不到它的父控件,於是轉戰使用DialogFragment,但是讓它全屏是一件很頭疼的事情,找了好久總於找到,分享給需要的朋友
記着要在DialogFragment的oncreate里面做
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setStyle(DialogFragment.STYLE_NORMAL, android.R.style.Theme_Black_NoTitleBar_Fullscreen); }