注册 登录
电子工程世界-论坛 返回首页 EEWORLD首页 频道 EE大学堂 下载中心 Datasheet 专题
jasmien的个人空间 https://home.eeworld.com.cn/space-uid-717194.html [收藏] [复制] [分享] [RSS]
日志

在窗口小部件里快速设置如何默认同步关闭

已有 539 次阅读2017-12-14 17:52

[DESCRIPTION]

MTK窗口小部件里快速设置如何默认同步关闭


[SOLUTION]

在JB版本是由SyncStorageEngine.Java (alps\php?mod=tag&id=6090" target="_blank" class="relatedlink">Frameworks\base\core\java\android\content)中
public boolean getMasterSyncAutomatically(int userId) {
synchronized (mAuthorities) {
Boolean auto = mMasterSyncAutomatically.get(userId);
Log.d(TAG,"userId="+userId+" auto="+auto+" mExt="+mExt);
if(mExt != null && mExt.getCurrentOPIndex() == 1){
///M: add for cmccc when there is no account default auto sync is off
Log.d(TAG,"mExt.getCurrentOPIndex()="+mExt.getCurrentOPIndex());
return auto == null ? false : auto;
} else {
return auto == null ? true : auto;
}
//return auto == null ? mDefaultMasterSyncAutomatically : auto;
}
}
决定的, 如果是CMCC的项目,默认就会是false.这是CMCC需求。
如果不是CMCC定制,可以修改 return auto == null ? true: auto;
为return auto == null ? false: auto;

这样就默认是关闭了。

评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 注册

热门文章