您的位置:首页 > 移动开发 > Android开发

Android 显示系统(一)创建Activity的过程中创建Surface

2016-11-23 18:10 465 查看
private void handleLaunchActivity(ActivityClientRecord r, Intent customIntent) {
// If we are getting ready to gc after going to the background, well
// we are back active so skip it.
unscheduleGcIdler();
mSomeActivitiesChanged = true;

if (r.profilerInfo != null) {
mProfiler.setProfiler(r.profilerInfo);
mProfiler.startProfiling();
}

/// M: It's for debugging App Launch time
logAppLaunchTime(TAG, "handleLaunchActivity is called");
.....
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android