我正在尝试为我的应用创建启动画面。问题是它首先使用默认标题栏呈现空布局,然后淡入我的图像。
这就是我所拥有的onCreate
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.setContentView(R.layout.activity_splash);
还尝试设置窗口属性
WindowManager.LayoutParams lp = this.getWindow().getAttributes();
lp.windowAnimations = lp.windowAnimations | android.R.attr.windowDisablePreview;
this.getWindow().setAttributes(lp);
两者都没有任何明显的区别。