|
|
@@ -7,6 +7,7 @@ import android.view.LayoutInflater;
|
|
|
import android.view.View;
|
|
|
import android.view.ViewGroup;
|
|
|
import android.view.Window;
|
|
|
+import android.view.WindowManager;
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
import kr.co.zumo.app.R;
|
|
|
@@ -36,6 +37,7 @@ public class PromotionFullScreenDialog extends PromotionDialog {
|
|
|
protected void onActivityCreatedInternal() {
|
|
|
Window window = getDialog().getWindow();
|
|
|
window.getAttributes().windowAnimations = R.style.PromotionDialogAnimation;
|
|
|
+ window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
|
|
|
|
|
|
mainBannerView = getView().findViewById(R.id.promotion_banner_all);
|
|
|
|
|
|
@@ -43,7 +45,7 @@ public class PromotionFullScreenDialog extends PromotionDialog {
|
|
|
* navigationBar 있는 경우 하단 패딩 추가함, FullScreen에서 statusBarHeight 패딩 추가
|
|
|
*/
|
|
|
// getView().setPadding(0, ResourceUtil.getStatusBarHeightManual(), 0, ResourceUtil.getNavBarHeight());
|
|
|
- ScreenUtil.setPaddingTopStatusBarHeight(getView());
|
|
|
+// ScreenUtil.setPaddingTopStatusBarHeight(getView());
|
|
|
ScreenUtil.setPaddingBottomNavigationBarHeight(getView());
|
|
|
|
|
|
TextView textViewNotTodayShow = getView().findViewById(R.id.text_view_not_today_show);
|