đź“– English Documentation | đź“– Chinese Documentation
- 0 Abstract
- 1 Life-Cycle
- 2 Collection Specification
- 3 Developer Guide
- 4 Performance Testing
- 5 Authors
- 6 License
- 7 WeChat Group
ViewTracker
is used to collect the mobile client of click and exposure event log automatically. It has been used in tmall App production environment from March 2016.
- Support
Android
&iOS
(the github repo ofiOS
SDK). - Support click & exposure events collection.
- Support the common information of page.
- Support multiple scenes, e.g. slides, automatic scrolling, window switch, tab switch, page jump, front and back switch.
- Support extension, e.g. data submission, customization for the exposure rules, sampling rate, etc.
- Keep It Simple, Stupid(
KISS
) Principle: Avoid code complexity, class name, package name etc have good readability. - Single Responsibility Principle(
SRP
): A piece of code function that explicitly performs a single task, such as click and exposure. - Open/Closed Principle(
OCP
): Maximize extensibility for user, such as you can replace the implementation ofIDataCommit
interface data submission; providing receiver of dynamic config, you can integrate with your own config system.
- Application
onCreate
- FrameLayout
onLayout
/onFling
/disPatchWindowFocusChanged
/dispatchVisibilityChanged
- GestureDetector
onGestureListener
- View
accessibilityDelegate
Data collection is closely related to data analysis statistics, the collection Specification of different events is critical.
- EventId:
2101
- ControlName:
button-1
- args:
key1=value,key2=value
- EventId:
2201
- ControlName:
button-1
- exposureTime:
500
- args:
exposureIndex=1,key1=value
To add a dependency using Gradle
:
compile('com.tmall.android:viewtracker:1.0.0@aar')
When the application starts, call the following:
/**
* SDK initilization
*
* @param mContext global context
* @param mTrackerOpen click event switch,yes means open
* @param mTrackerExposureOpen exposure event switch,yes means open
* @param printLog debug log switch,yes means open
*/
TrackerManager.getInstance().init(mContext, mTrackerOpen, mTrackerExposureOpen, printLog);
Implement the IDataCommit interface to set up data submission.
Class DataCommit implments IDataCommit {
...
// your implementation here
...
}
TrackerManager.getInstance().setCommit(new DataCommit());
CAUTION:
You should implement the interface IDataCommit
in production environment, because the collected log data need be saved on your own server-side.
Tag needs to be bound to the view that needs to be collected. Look at the following situations.
String viewName = "button-1";
view.setTag(TrackerConstants.VIEW_TAG_UNIQUE_NAME, viewName);
The extended information is bound to the view
HashMap<String, String> args = new HashMap<String, String>();
args.put(key, value);
...
view.setTag(TrackerConstants.VIEW_TAG_PARAM, args);
All the views of the page are required to be reported,you can look at the following code.
HashMap<String, String> args = new HashMap<String, String>();
args.put(key, value);
...
getWindow().getDecorView().setTag(TrackerConstants.DECOR_VIEW_TAG_COMMON_INFO, args);
The server-side click event configuration JSON
format is as follows:
{
"masterSwitch": true, // Click event switch
"sampling":100 // Click event sampling rate
}
The server-side exposure event configuration JSON
format is as follows:
{
"masterSwitch": true, // exposure event switch
"timeThreshold": 100, // Valid exposure time threshold
"dimThreshold": 0.8, // Valid exposure area threshold
"exposureSampling": 100, // Exposure event sampling rate
"batchOpen":false //Batch report switch
}
After receiving the server configuration, the application sends the broadcast, and the SDK can receive and dynamically modify the configuration.
//get click config from server-side
JSONObject config = new JSONObject();
// get exposure config from server-side
...
JSONObject exposureConfig = new JSONObject();
// send broadcast
...
Intent intent = new Intent(ConfigReceiver.ACTION_CONFIG_CHANGED);
intent.putExtra(ConfigReceiver.VIEWTRACKER_CONFIG_KEY, config.toString());
intent.putExtra(ConfigReceiver.VIEWTRACKER_EXPOSURE_CONFIG_KEY, exposureConfig.toString());
context.sendBroadcast(intent);
As each page has attached a TrackerFrameLayout
, in the UI main thread of the event processing methods have exposure time calculation operation, may have a certain impact on the page fluency, so the need for performance testing.
The test the buried two ways of uses the viewtracker
collection and the original code to submit for the FPS effect.
- Phone Model: xiaomi2
- System Version:
Android 5.0
- App: Tmall Android
- App Version:
5.32.0
- Page:
HomePage
Index | Traditional Code | use ViewTracker |
---|---|---|
Number Of Test | 20 | 20 |
MAX_FPS | 60 | 63 |
MIN_FPS | 50 | 47 |
AVG_FPS | 54.81 | 53.90 |
Result: ViewTracker
has no significant effect on FPS
.
ViewTracker
is available under the Apache License 2.0. See the LICENSE file for more info.
Because the QR code of WeChat Group is valid for a short period , you can join us by search Sunshine07de
in WeChat.