片段之间的启动画面/动画

时间:2014-12-23 22:42:37

标签: android android-layout android-activity android-fragments android-animation

我尝试在新闻摘要应用程序中实现启动画面动画。幸运的是我在GitHub中找到了很好的例子点击了here,但是在这个示例中,您可以看到圈子合并在一起并消失打开ContentView这是一张图片。

他们使用了这些行。

Context context = getApplicationContext();
// now that our data is loaded we can initialize the content view
mContentView = new ContentView(context);
// add the content view to the background
mMainView.addView(mContentView, 0);

我有我的MainActivity布局视图。 如何显示主要布局视图而不是这些图片?!我希望看到圆圈之后的main_layout视图合并在一起并消失。我在下面使用这些代码,但它对我没有帮助。您将看到几秒黑屏,并且只在主布局之后。但它不是我想要的。任何人都可以帮我解决这个问题吗?!我需要改变什么?!

// Start your app main activity
startActivity(new Intent(SplashScreen.this, MainActivity.class));
// close splashScreen activity
finish();

图片在这里点击here

1 个答案:

答案 0 :(得分:1)

你可以使用一个活动..如果你没有在启动画面上做任何特别的事情,或者你真的不介意使用一个活动,你可以这样做..

//after splash screen is done flirting with the user,i.e circle effects
View v = Activity.getLayoutInflater().inflate(R.layout.main_layout, null); 
mContentView = new ContentView(context); // put your preferred context
mMainView.addView(v, 0);

你可以把它放在onresume-(等待和动画).. ayt ..也许你在oncreate做你的飞溅的东西

实际上我不知道那个库。我真的不能告诉参数,但是如果你想将效果或输出作为你链接的图片,这应该很适合你...

让我知道wassup