/**
* A valid wcdma cell must have cell id set
* @param cdmaLocation {@link CdmaCellLocation}
* @return true if valid cdma id
*/
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
private boolean isValidWcdmaCell(final CellIdentityWcdma wcdmaInfo) {
if (wcdmaInfo == null) {
return false;
}
final Integer cid = wcdmaInfo.getCid();
return ((cid > -1) && (cid < Integer.MAX_VALUE));
}
WirelessLoggerService.java 文件源码
java
阅读 88
收藏 0
点赞 0
评论 0
项目:openbmap
作者:
评论列表
文章目录