gpt4 book ai didi

android - fragment 之间的启动画面/动画

转载 作者:行者123 更新时间:2023-11-30 02:28:17 26 4
gpt4 key购买 nike

我尝试实现像News Digest 应用程序中那样的启动画面动画。幸运的是我在 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 布局 View 。 如何显示主布局 View 而不是这些图片?!我想在圆圈合并并消失后看到 main_layout View 。我在下面使用了这些代码,但对我没有帮助。您将看到几秒钟的黑屏,并且仅在主布局之后。但这不是我想要的。谁能帮我解决这个问题?!我需要改变什么?!

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

图片在这里 点击here

最佳答案

您可以使用一个 Activity.. 如果您没有专门在启动屏幕上做任何事情,或者您真的不介意使用一个 Activity,您可以这样做..

//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 中做你的 splash 东西

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

让我知道wassup

关于android - fragment 之间的启动画面/动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27629102/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com