|
|
@@ -6,6 +6,7 @@ import android.support.annotation.Nullable;
|
|
|
import android.view.LayoutInflater;
|
|
|
import android.view.View;
|
|
|
import android.view.ViewGroup;
|
|
|
+import android.view.Window;
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
import kr.co.zumo.app.R;
|
|
|
@@ -33,6 +34,8 @@ public class PromotionFullScreenDialog extends PromotionDialog {
|
|
|
|
|
|
@Override
|
|
|
protected void onActivityCreatedInternal() {
|
|
|
+ Window window = getDialog().getWindow();
|
|
|
+ window.getAttributes().windowAnimations = R.style.PromotionDialogAnimation;
|
|
|
|
|
|
mainBannerView = getView().findViewById(R.id.promotion_banner_all);
|
|
|
getView().setPadding(0, ResourceUtil.getStatusBarHeightManual(), 0, ResourceUtil.getNavBarHeight());
|