Android 性能优化(5)网络优化 (1) Collecting Network Traffic Data 用Network Traffic tool :收集传输数据
Collecting Network Traffic Data
1.This lesson teaches you to
- Tag Network Requests 标记网络类型
- Configure a Network Test Build Type 在as中配置测试模式才能测试网络
- Deploy the Network Test APK 在真机上部属网络调试应用
- Run Network Traffic Tool NetWork Traffic 工具
The network traffic generated by an app can have a significant impact on the battery life of the device where it is running. In order to optimize that traffic, you need to both measure it and identify its source. Network requests can come directly from a user action, requests from your own app code, or from a server communicating with your app.
网络连接可能发自本地应用向远程服务器发送请求,也可能来自远程服务器。
The Network Traffic tool (part of the DDMS tools) enables you to view how and when your app transfers data over a network.
This lesson shows you how to measure and categorize network requests by tagging your source code, then shows you how to deploy, test and visualize your apps's network traffic.
2.Tag Network Requests 标记网络类型
Apps use the networking hardware on a device for various reasons. In order to properly optimize your app's use of networking resources, you must understand how frequently your app is using the network and for what reasons. For performance analysis purposes, you should break down use of network hardware into these categories:
网络请求的3种类型:
- User-initiated network requests - Requests initiated by the user, such as a user request for an updated articles list in a news app.
用户手动发起,如更新应用。
- App-initiated network requests - Requests initiated within Android app code that are not used to immediately satisfy a user action, such as an app request to cache the text of unread articles in a news app.
应用内部代码向远程服务器发起请求。
- Server-initiated network requests - Requests initiated by a server to your app that are not used to immediately satisfy a user action, such as notification of a newly available article in a news app.
远程服务器向应用发送推送。
This procedure shows you how to tag your app's source code with constants to categorize traffic as one of these three request types. The Network Traffic tool represents each type of traffic with a different color, so you can visualize and optimize each traffic stream separately. The technique described here reports network traffic based on the execution of threads in your app which you identify as a user, app or server source.
Network Traffic 工具把每种网络请求按颜色分开。 下面是使用TrafficStats类在代码中标识3种网络请求类型的方法:
- In your app's development project, define three constants to represent the different types of network use:
public static final int USER_INITIATED = 0x1000;
public static final int APP_INITIATED = 0x2000;
public static final int SERVER_INITIATED =0x3000; - Find networking code in your app by searching for the most common classes used for this purpose:
- In Android Studio, choose Edit > Find > Find in Path.
- Paste the following string into the Text to find field:
extends GcmTaskService|
extends JobService|
extends AbstractThreadedSyncAdapter|
HttpUrlConnection|Volley|Glide|HttpClient - Check Regular expression.
- Check File mask(s) and type
*.java
. - Click the Find button.
- Based on your findings in the previous step, tag your app's use of network traffic by adding the
setThreadStatsTag(int)
method to each execution thread in your app that uses network resources, as shown in the following code example.if (BuildConfig.NETWORK-TEST && Build.VERSION.SDK_INT >= ) {
try {
TrafficStats.setThreadStatsTag(USER_INITIATED);
// make network request using HttpClient.execute()
} finally {
TrafficStats.clearThreadStatsTag();
}
}Note: Ensure the tagging does not get into your production code by making inclusion of this code conditional, based on the build type used to generate the APK. In the example above, the
BuildConfig.NETWORK-TEST
field identifies this APK as a test version.
Note: This technique for tagging network traffic from your app depends on how the APIs that you are using access and manage network sockets. Some networking libraries may not allow the TrafficStats
utilities to tag traffic from your app.
并不是所有的网络库都支持 TrafficStats 。Network Traffic tool 工具教程 Detailed Network Usage in DDMS
For more information about tagging and tracking network traffic with the Network Traffic tool, see Detailed Network Usage in DDMS.
3.Configure a Network Test Build Type 在as中配置测试模式才能测试网络
When you run performance tests, your APK should be as close as possible to the production build. In order to achieve this for your network testing, create a network-test
build type, rather than using debug
build type.
- Open your app in Android Studio.
- Create a debuggable build type for your network test by modifying your project's
build.gradle
file as shown in the following code example:android {
...
buildTypes {
debug {
// debuggable true is default for the debug buildType
}
network-test {
debuggable true
}
}
...
}
4.Deploy the Network Test APK 部属网络测试的apk
To deploy the APK generated by the network-test
build type configured in the previous proceedure:
- Check that Developer Options are enabled on your test device. For information about how to check and enable this option, see Using Hardware Devices.
- Using a USB cable, connect your test device to your development computer.
- In Android Studio, select Build Variants on the left edge of the window.
- Click the Sync Project with Gradle Files button to populate the Build Variants list with
network-test
for the app module. - Choose
network-test
from the list. - Deploy the debuggable version of your app to your device by choosing Run > Debug.
5.Run Network Traffic Tool
The Network Traffic tool in Android Studio helps you see how your app uses network resources in real time, while it is running.
To improve the repeatability of your testing, you should start with a known initial state for your app by clearing app data. The following procedure includes a step that shows you how to clear all app data including previously cached data and networking data. This step puts your app back to a state where it must re-cache all previously cached data. Do not skip this step.
Network Traffic工具测试app网络请求时,就保证app启动时没有缓存数据。注意,这步是必需的。
To start the Network Traffic tool and visualize the network requests:
- Start the Network Traffic tool by launching Android Studio and choosing Tools > Android > Android Device Monitor. When asked, allow incoming network connections.
- In the Android Device Monitor window, click the DDMS button along the top and choose the Network Statistics tab. If you don't see this tab, widen the window and then try Window > Reset Perspective.
- Select your app to debug from the list of debuggable apps on your device in the Devices tab, then click theStart button in the Network Statistics tab.
Note: You may be prompted to Allow USB Debugging on your device. Select OK to allow debugging to proceed.
- Clear your app data using the following adb command:
adb shell pm clear package.name.of.app
- Start your app and run a testing plan that exercises your app's primary use cases. Your plan should also allow for app idle time, where the user is not interacting with the app, to allow app-initiated and server-initiated network access to occur.
- Repeat the test by clearing the app data and running your test plan again. You should repeat the test a few times to verify the repeatability of your performance data.
Use of tagging for network traffic helps you visually distinguish each request category by producing a different color for each network traffic in the Network Traffic tool, as shown in Figure 1.
Figure 1. Network traffic tagged for the three categories.
Android 性能优化(5)网络优化 (1) Collecting Network Traffic Data 用Network Traffic tool :收集传输数据的更多相关文章
- Android性能优化典范第二季
Google前几天刚发布了Android性能优化典范第2季的课程,一共20个短视频,包括的内容大致有:电量优化,网络优化,Wear上如何做优化,使用对象池来提高效率,LRU Cache,Bitma ...
- Android性能优化典范(二)
Google前几天刚发布了Android性能优化典范第2季的课程,一共20个短视频,包括的内容大致有:电量优化,网络优化,Wear上如何做优化,使用对象池来提高效率,LRU Cache,Bitmap的 ...
- android app性能优化大汇总(google官方Android性能优化典范 - 第2季)
Google前几天刚发布了Android性能优化典范第2季的课程,一共20个短视频,包括的内容大致有:电量优化,网络优化,Wear上如何做优化,使用对象池来提高效率,LRU Cache,Bitmap的 ...
- Android性能优化典范 - 第2季
Google发布了Android性能优化典范第2季的课程,一共20个短视频,包括的内容大致有:电量优化,网络优化,Wear上如何做优化,使用对象池来提高效率,LRU Cache,Bitmap的缩放,缓 ...
- Android性能优化问题总结
性能优化这块,分为UI性能优化.内存优化.数据库优化.网络优化.耗电优化等等.可以从1.如何发现问题,2.怎么解决问题,3.解决效果对比,这几个方面去描述.举个简单例子——UI优化,可以从 UI出现什 ...
- Android 性能优化探究
使用ViewStub动态载入布局.避免一些不常常的视图长期握住引用: ViewStub的一些特点: 1. ViewStub仅仅能Inflate一次,之后ViewStub对象被置空:某个被ViewStu ...
- 我把阿里、腾讯、字节跳动、美团等Android性能优化实战整合成了一个PDF文档
安卓开发大军浩浩荡荡,经过近十年的发展,Android技术优化日异月新,如今Android 11.0 已经发布,Android系统性能也已经非常流畅,可以在体验上完全媲美iOS. 但是,到了各大厂商手 ...
- 【腾讯Bugly干货分享】Android性能优化典范——第6季
本文来自于腾讯bugly开发者社区,非经作者同意,请勿转载,原文地址:http://dev.qq.com/topic/580d91208d80e49771f0a07c 导语 这里是Android性能优 ...
- android 性能优化
本章介绍android高级开发中,对于性能方面的处理.主要包括电量,视图,内存三个性能方面的知识点. 1.视图性能 (1)Overdraw简介 Overdraw就是过度绘制,是指在一帧的时间内(16. ...
- Android性能优化典范第一季
2015年伊始,Google发布了关于Android性能优化典范的专题,一共16个短视频,每个3-5分钟,帮助开发者创建更快更优秀的Android App.课程专题不仅仅介绍了Android系统中有关 ...
随机推荐
- Linux下汇编语言学习笔记64 ---
这是17年暑假学习Linux汇编语言的笔记记录,参考书目为清华大学出版社 Jeff Duntemann著 梁晓辉译<汇编语言基于Linux环境>的书,喜欢看原版书的同学可以看<Ass ...
- kibana启动--nohup在关闭终端后无效&&守护进程详解
https://blog.csdn.net/ty_0930/article/details/70184705 https://blog.csdn.net/Dream_Flying_BJ/article ...
- JavaScript高级篇之Function对象
JavaScript高级篇之Function对象 一: Function对象引入: Function对象是js的方法对象,可以用Function实例化出任何js方法对象. 例如: <%@ pag ...
- Spring Cloud体系实现标签路由
如果你正在使用Spring Cloud体系,在实际使用过程中正遇到以下问题,可以阅读本文章的内容作为后续你解决这些问题的参考,文章内容不保证无错,请务必仔细思考之后再进行实践. 问题: 1,本地连上开 ...
- operamasks—omGrid/omBorderLayout的混合使用
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test.aspx.cs&q ...
- Servlet表单数据处理
以下内容引用自http://wiki.jikexueyuan.com/project/servlet/form-data.html: 当需要从浏览器到Web服务器传递一些信息并最终传回到后台程序时,一 ...
- struts1与struts2的差别
Struts 2是Struts的下一代产品,是在 struts 1和WebWork的技术基础上进行了合并的全新的Struts 2框架.其全新的Struts 2的体系结构与Struts 1的体系结 ...
- Raphael.js API 之Element.remove(),Element.removeData(),paper.text(),Element.node(),Element.onDragOver
/*API-38*/ Element.remove() 删除某个元素对象,无返回值 /*API-39*/ Element.removeData([key]); 删除某个key的value值.假设没有特 ...
- Hiho1041 国庆出游 搜索题解
题目3 : 国庆出游 时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描写叙述 小Hi和小Ho准备国庆期间去A国旅游.A国的城际交通比較有特色:它共同拥有n座城市(编号1-n): ...
- android XXXActivity和getApplicationContext()差别
从接触android起,到处都能看到context(上下文)的身影,查看源代码之后你会发现,它仅仅是个抽象类,详细实现都在ContextWrapper实现. 当你去查看android的源代码时,你会发 ...