/**
* A valid LTE 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 isValidLteCell(final CellIdentityLte lteInfo) {
if (lteInfo == null) {
return false;
}
final Integer cid = lteInfo.getCi();
return ((cid > -1) && (cid < Integer.MAX_VALUE));
}
WirelessLoggerService.java 文件源码
java
阅读 33
收藏 0
点赞 0
评论 0
项目:openbmap
作者:
评论列表
文章目录