IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android开发必会App启动优化(1),kotlin爬虫框架 -> 正文阅读

[移动开发]Android开发必会App启动优化(1),kotlin爬虫框架

过多的初始化任务,考虑以下优化方案:

  1. 考虑异步初始化三方组件,不阻塞主线程;

  2. 延迟部分三方组件的初始化;

优化方案如下:

组件放到子线程中初始化:

new Thread(new Runnable() {

@Override

public void run() {

setThreadPriority(THREAD_PRIORITY_BACKGROUND);

initARouter();

CacheManager.getInstance().initialize(getInstance());

ConnectionManager.getInstance().initialize();

initImageFactory();

initBJY();

initGrowingIO();

initUmeng();

initBugly();

initOkHttp();

initSobot();

setRxJavaErrorHandler();

}

}).start();

将需要在主线程中初始化但是可以不用立使用的控件功能延迟加载:

handler.postDelayed(new Runnable() {

@Override

public void run() {

//延迟初始化组件

}

}, 3000);

注意: 并不是每一个组件的初始化以及操作都可以异步或延迟;是否可以取决组件的调用关系以及自己项目具体业务的需要。保证一个准则:可以异步的都异步,不可以异步的尽量延迟。让应用先启动,再操作。

//子线程初始化第三方组件

//建议延迟初始化,可以发现是否影响其它功能,或者是崩溃!

Thread.sleep(5000);

2、闪屏Activity优化:

Activity的UI层级优化:

优化前UI布局:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background="@mipmap/icon_splash_bg">

<ImageView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:src="@mipmap/icon_splash_word"

android:layout_centerVertical=“true”

android:layout_centerHorizontal=“true”

android:paddingBottom=“160dp”

/>

<ImageView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_centerHorizontal=“true”

android:src="@mipmap/icon_splash"

android:layout_alignParentBottom=“true”

android:layout_marginBottom="@dimen/dp_41"

/>

<com.pxwx.student.modulecore.widget.TouchRelativeLayout

android:id="@+id/rl_adsRl"

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:gravity=“center_horizontal|top”

android:orientation=“vertical” >

<ImageView

android:id="@+id/iv_SplashAd"

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background="@null"

android:contentDescription="@null"

android:scaleType=“fitXY”

android:visibility=“gone” />

</com.pxwx.student.modulecore.widget.TouchRelativeLayout>

<TextView

android:id="@+id/tv_adjump"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:background="@drawable/ad_jump_selector"

android:gravity=“center_vertical|center_horizontal”

android:layout_alignParentRight=“true”

android:layout_marginRight="@dimen/dp_18"

android:layout_marginTop="@dimen/dp_30"

android:paddingBottom="@dimen/dp_5"

android:padding

《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》

【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享

Left="@dimen/dp_11"

android:paddingRight="@dimen/dp_11"

android:paddingTop="@dimen/dp_5"

android:text=“跳过 3”

android:textColor="@color/white"

android:textSize="@dimen/font_15"

android:visibility=“gone”

/>

简化后:

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background="@drawable/welcome_layler_drawable">

<ViewStub

android:id="@+id/vs"

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:layout="@layout/layout_stub_avd" />

ViewStub 初始化延迟

针对项目中的启屏广告业务,通过ViewStub延后他们的初始化,在需要显示的时候通过ViewStub的inflate显示真正的view,优化如下

<ViewStub

android:id="@+id/vs"

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:layout="@layout/layout_stub_avd" />

开屏广告业务布局抽取

layout_stub_avd.xml

<?xml version="1.0" encoding="utf-8"?>

<com.pxwx.student.modulecore.widget.TouchRelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:id="@+id/rl_adsRl"

android:layout_width=“match_parent”

android:layout_height=“match_parent”>

<ImageView

android:id="@+id/iv_SplashAd"

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background="@null"

android:contentDescription="@null"

android:scaleType=“fitXY” />

<TextView

android:id="@+id/tv_adjump"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignParentRight=“true”

android:layout_marginTop="@dimen/dp_30"

android:layout_marginRight="@dimen/dp_18"

android:background="@drawable/ad_jump_selector"

android:gravity=“center”

android:paddingLeft="@dimen/dp_11"

android:paddingTop="@dimen/dp_5"

android:paddingRight="@dimen/dp_11"

android:paddingBottom="@dimen/dp_5"

android:text=“跳过 3”

android:textColor="@color/white"

android:textSize="@dimen/font_15" />

</com.pxwx.student.modulecore.widget.TouchRelativeLayout>

然后在代码中需要显示webview时进行inflate:

/**

  • 懒加载广告视图

*/

private void showAvd() {

viewStub = findViewById(R.id.vs);

if (viewStub != null) {

viewStub.inflate();

mAdRl = findViewById(R.id.rl_adsRl);

mAdImage = findViewById(R.id.iv_SplashAd);

mAdJump = findViewById(R.id.tv_adjump);

}

}

优化点:

  1. 废弃之前的启屏页UI布局,直接使用先前自定义好的welcome_layler_drawable作为启屏页背景

  2. 将开屏广告Ui抽取分离

  3. 懒加载广告视图

onCreate业务逻辑优化:

  1. 减少广告等业务逻辑时间这里属于业务逻辑的优化。

  2. onCreate中针对广告业务的初始化业务优化,异步下载图片,等下次启动控制展示

总结

通用应用启动加速套路

  1. 利用主题快速显示界面;

  2. 异步初始化组件;

  3. 梳理业务逻辑,延迟初始化组件、操作;

  4. 正确使用线程;

  5. 去掉无用代码、重复逻辑等。

问题:

1、启动速度的衡量指标启动时间如何计算?

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-12-26 22:18:57  更:2021-12-26 22:21:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 9:50:11-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码