0

我正在尝试为我的应用创建启动画面。问题是它首先使用默认标题栏呈现空布局,然后淡入我的图像。

这就是我所拥有的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);

两者都没有任何明显的区别。

4

1 回答 1

0

您可以通过为您的启动活动设置主题来摆脱标题栏。将此添加到清单中的活动声明中

android:theme="@android:style/Theme.NoTitleBar"
于 2012-07-17T15:43:17.320 回答