Flutter&Android 启动页(闪屏页)的加载流程和优化方案

文章讲述了如何在Android应用中优化Flutter启动页,通过使用原生Surface和SVGA插件在后台线程显示启动动画,以提高性能并减少Flutter引擎加载时的等待时间。作者还提供了面试复习资料,包括Android开发学习资源和面试技巧.
摘要由CSDN通过智能技术生成

flutterView = new FlutterView(host.getActivity(), flutterSurfaceView);

} else {

FlutterTextureView flutterTextureView = new FlutterTextureView(host.getActivity());

// Allow our host to customize FlutterSurfaceView, if desired.

host.onFlutterTextureViewCreated(flutterTextureView);

// Create the FlutterView that owns the FlutterTextureView.

flutterView = new FlutterView(host.getActivity(), flutterTextureView);

}

// Add listener to be notified when Flutter renders its first frame.

flutterView.addOnFirstFrameRenderedListener(flutterUiDisplayListener);

/// 创建一个闪屏view - FlutterSplashView

flutterSplashView = new FlutterSplashView(host.getContext());

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {

flutterSplashView.setId(View.generateViewId());

} else {

// TODO(mattcarroll): Find a better solution to this ID. This is a random, static ID.

// It might conflict with other Views, and it means that only a single FlutterSplashView

// can exist in a View hierarchy at one time.

flutterSplashView.setId(486947586);

}

/// 显示闪屏页

flutterSplashView.displayFlutterViewWithSplash(flutterView, host.provideSplashScreen());

Log.v(TAG, “Attaching FlutterEngine to FlutterView.”);

///所创建surface 绑定到engine上

flutterView.attachToFlutterEngine(flutterEngine);

return flutterSplashView;

}

这里我们可以大致了解到,创建了一个FlutterSurfaceView 它继承自surfaceView(我们的flutter页面也是渲染在这个surface上的)。之后我们用它初始化一个FlutterView,

FlutterView继承自 FrameLayout

随后我们再创建一个FlutterSplashView (继承FrameLayout)并调用displayFlutterViewWithSplash()方法。

public void displayFlutterViewWithSplash(

@NonNull FlutterView flutterView, @Nullable SplashScreen splashScreen) {

// If we were displaying a previous FlutterView, remove it.

if (this.flutterView != null) {

this.flutterView.removeOnFirstFrameRenderedListener(flutterUiDisplayListener);

removeView(this.flutterView);

}

// If we were displaying a previous splash screen View, remove it.

if (splashScreenView != null) {

removeView(splashScreenView);

}

// Display the new FlutterView.

this.flutterView = flutterView;

///添加flutterView

addView(flutterView);

this.splashScreen = splashScreen;

// Display the new splash screen, if needed.

if (splashScreen != null) {

if (isSplashScreenNeededNow()) {

Log.v(TAG, “Showing splash screen UI.”);

// This is the typical case. A FlutterEngine is attached to the FlutterView and we’re

// waiting for the first frame to render. Show a splash UI until that happens.

splashScreenView = splashScreen.createSplashView(getContext(), splashScreenState);

///添加 splashScreenView

addView(this.splashScreenView);

flutterView.addOnFirstFrameRenderedListener(flutterUiDisplayListener);

} else if (isSplashScreenTransitionNeededNow()) {

Log.v(

TAG,

“Showing an immediate splash transition to Flutter due to previously interrupted transition.”);

splashScreenView = splashScreen.createSplashView(getContext(), splashScreenState);

addView(splashScreenView);

transitionToFlutter();

} else if (!flutterView.isAttachedToFlutterEngine()) {

Log.v(

TAG,

“FlutterView is not yet attached to a FlutterEngine. Showing nothing until a FlutterEngine is attached.”);

flutterView.addFlutterEngineAttachmentListener(flutterEngineAttachmentListener);

}

}

}

这个方法对flutterView进行了保存(不用管这个),随后我们保存了一个 接口的实现类——splashScreen,这个实现类则是由FlutterActivity实现的(MainActivity)来提供的:

///host 是个接口,由FlutterActivity实现

回顾上面:flutterSplashView.displayFlutterViewWithSplash(flutterView, host.provideSplashScreen());

public SplashScreen provideSplashScreen() {

Drawable manifestSplashDrawable = getSplashScreenFromManifest();

if (manifestSplashDrawable != null) {

///DrawableSplashScreen 实现了 splashScreen的接口

return new DrawableSplashScreen(manifestSplashDrawable);

} else {

return null;

}

}

通过getSplashScreenFromManifest 初始化了一个drawable,我们看一下它内部:

@Nullable

@SuppressWarnings(“deprecation”)

private Drawable getSplashScreenFromManifest() {

try {

ActivityInfo activityInfo =

getPackageManager().getActivityInfo(getComponentName(), PackageManager.GET_META_DATA);

Bundle metadata = activityInfo.metaData;

///这里就是我们在 AndroidManifest.xml中设置启动页了

///SPLASH_SCREEN_META_DATA_KEY 的值 见下方

int splashScreenId = metadata != null ? metadata.getInt(SPLASH_SCREEN_META_DATA_KEY) : 0;

return splashScreenId != 0

? Build.VERSION.SDK_INT > Build.VERSION_CODES.LOLLIPOP

? getResources().getDrawable(splashScreenId, getTheme())

getResources().getDrawable(splashScreenId)

null;

} catch (PackageManager.NameNotFoundException e) {

// This is never expected to happen.

return null;

}

}

static final String SPLASH_SCREEN_META_DATA_KEY =

“io.flutter.embedding.android.SplashScreenDrawable”;

可以看到,通过上面的方法,我们以在AndroidManifest.xml设置的启动资源 初始化了一个drawable,进而初始化了DrawableSplashScreen 并返回。

我们回到displayFlutterViewWithSplash 继续向下看,

///通过我们之前的drawable 生成一个 view

splashScreenView = splashScreen.createSplashView(getContext(), splashScreenState);

///添加 splashScreenView

addView(this.splashScreenView);

到了这里,整个闪屏页的流程就跑完了。

回头看去,可以发现在闪屏页的显示到引擎的启动及flutter 页面的显示会有一个很长的过程,而直到flutter 页面的显示,这个闪屏页才会被移除掉。

那么如何优化呢? 以下是我的方案。

启动页优化方案

=====================================================================

因为flutter与原生处于两个不同的surface,所以我们可以考虑利用原生的surface来显示这个启动页,同时为了避免拖慢flutter的启动,我们可以在子线程来做这个事情。ww

案例中我们显示一个svga动画

插件使用:‘com.github.yyued:SVGAPlayer-Android:2.5.12’

实现


直接开工,我们写个方法initSplashPage() :

public void initSplashPage(){

Executors.newSingleThreadExecutor()

.execute(new Runnable() {

@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)

@Override

public void run() {

///涉及到view的更新,所以我们需要一个loop

Looper.prepare();

WindowManager wm = (WindowManager)getSystemService(WINDOW_SERVICE);

///创建启动页的view

SVGAImageView imageView = new SVGAImageView(getApplicationContext());

imageView.setBackgroundColor(getResources().getColor(R.color.white));

Handler handler = new Handler(){

@Override

public void handleMessage(Message msg) {

switch (msg.what){

case 1111:

///在启动页中 显示 svga动画

imageView.setImageDrawable((SVGADrawable)msg.obj);

imageView.startAnimation();

break;

}

}

};

///解析 assets的svga资源

SVGAParser parser = new SVGAParser(getApplicationContext());

parser.decodeFromAssets(“angel.svga”, new SVGAParser.ParseCompletion() {

@Override

public void onComplete(SVGAVideoEntity svgaVideoEntity) {

///由于 插件内部切换了主线程,所以我们这里需要handler再次切换

SVGADrawable drawable = new SVGADrawable(svgaVideoEntity);

Message msg = Message.obtain();

msg.what = 1111;

msg.obj = drawable;

handler.sendMessage(msg);

}

@Override

public void onError() {

}

});

WindowManager.LayoutParams params = new WindowManager.LayoutParams();

params.width = wm.getDefaultDisplay().getWidth();

params.height = wm.getDefaultDisplay().getHeight();

///显示闪屏页

wm.addView(imageView, params);

///6秒后去掉闪屏页,显示flutter页面

new Handler().postDelayed(new Runnable() {

@Override

public void run() {

wm.removeView(imageView);

}

}, 6000);

Looper.loop();

}

});

}

以上是整个实现过程,由于svga插件的解析回调在主线程,所以需要通过子线程的handler进行一个线程切换,最后通过wm进行上屏显示。

另外,我额外在6秒后移除了闪屏页,实际上应该由flutter端通过channel,来通知移除这个闪屏页,我这里写的随意了一些。

使用


之后我们在MainActivity的onCreate中使用它:

@Override

protected void onCreate(@Nullable Bundle savedInstanceState) {

initSplashPage();

///flutter相关的工作

super.onCreate(savedInstanceState);

}

效果如下:
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则近万的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

img

img

img

img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

如果你觉得这些内容对你有帮助,可以扫码获取!!(备注:Android)

面试复习笔记:

这份资料我从春招开始,就会将各博客、论坛。网站上等优质的Android开发中高级面试题收集起来,然后全网寻找最优的解答方案。每一道面试题都是百分百的大厂面经真题+最优解答。包知识脉络 + 诸多细节。
节省大家在网上搜索资料的时间来学习,也可以分享给身边好友一起学习。

《960页Android开发笔记》

《1307页Android开发面试宝典》

包含了腾讯、百度、小米、阿里、乐视、美团、58、猎豹、360、新浪、搜狐等一线互联网公司面试被问到的题目。熟悉本文中列出的知识点会大大增加通过前两轮技术面试的几率。

《507页Android开发相关源码解析》

只要是程序员,不管是Java还是Android,如果不去阅读源码,只看API文档,那就只是停留于皮毛,这对我们知识体系的建立和完备以及实战技术的提升都是不利的。

真正最能锻炼能力的便是直接去阅读源码,不仅限于阅读各大系统源码,还包括各种优秀的开源库。

《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!

答方案。每一道面试题都是百分百的大厂面经真题+最优解答。包知识脉络 + 诸多细节。
节省大家在网上搜索资料的时间来学习,也可以分享给身边好友一起学习。

《960页Android开发笔记》

[外链图片转存中…(img-dh7ZG0IU-1712755977811)]

《1307页Android开发面试宝典》

包含了腾讯、百度、小米、阿里、乐视、美团、58、猎豹、360、新浪、搜狐等一线互联网公司面试被问到的题目。熟悉本文中列出的知识点会大大增加通过前两轮技术面试的几率。

[外链图片转存中…(img-MUR9OU7h-1712755977811)]

《507页Android开发相关源码解析》

只要是程序员,不管是Java还是Android,如果不去阅读源码,只看API文档,那就只是停留于皮毛,这对我们知识体系的建立和完备以及实战技术的提升都是不利的。

真正最能锻炼能力的便是直接去阅读源码,不仅限于阅读各大系统源码,还包括各种优秀的开源库。

《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值