/**
* A valid wcdma cell must have cell id set
*
* @param wcdmaInfo {@link CellIdentityWcdma}
* @return true if valid cdma id
*/
@TargetApi(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
阅读 28
收藏 0
点赞 0
评论 0
项目:radiocells-scanner-android
作者:
评论列表
文章目录