如何最小化 android 应用缓存大小

How to minimizing android app cache size

我的 android 应用程序缓存大小在我将应用程序加载到设备时约为 40MB,并且在第一次启动该应用程序时显示空白屏幕。我不知道如何解决这个挑战,请帮忙。

这些是我正在使用的库。

compile(group: 'com.microsoft.azure', name: 'azure-notifications-handler', version: '1.0.1', ext: 'jar')
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.microsoft.azure.android:azure-storage-android:0.6.0@aar'
compile 'com.microsoft.azure:azure-mobile-services-android-sdk:2.0.3'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'com.mcxiaoke.volley:library-aar:1.0.0'

我会尝试 this guide 你可能不能在那里放一个动画,但是当你的应用程序第一次加载时显示一些资源而不是 black/white 屏幕听起来不错。

您需要某种启动画面来在应用加载时娱乐用户。但是有一个问题...因为应用程序仍在加载中,它如何 运行 任何代码来显示启动画面?事实上它不能真的,但幸运的是有一个解决方案:在加载期间,window 管理器使用主题中的元素(例如背景和状态)为您的应用程序绘制一个占位符 UI条形颜色。正确设置主题可以让您即刻显示静态图像(尚未加载代码,因此此时没有花哨的动画)。关键是创建覆盖 android:windowBackground 属性的自定义主题,一旦您的应用程序加载并启动 运行ning,您只需用标准主题替换该主题,然后再调用 super.onCreate() Activity.

这里是 Ian Lake 的 Google+ post 详细描述了这种技术:Use cold start time effectively with a branded launch theme.