| | |
| | | import android.content.DialogInterface; |
| | | import android.content.Intent; |
| | | import android.os.Bundle; |
| | | import android.os.SystemClock; |
| | | import android.text.TextUtils; |
| | | import android.util.Log; |
| | | import android.view.View; |
| | | |
| | | import androidx.recyclerview.widget.LinearLayoutManager; |
| | |
| | | |
| | | import com.google.gson.JsonObject; |
| | | import com.hdl.linkpm.sdk.core.exception.HDLException; |
| | | import com.hdl.linkpm.sdk.user.HDLLinkPMUser; |
| | | import com.hdl.photovoltaic.R; |
| | | import com.hdl.photovoltaic.base.CustomBaseActivity; |
| | | import com.hdl.photovoltaic.config.ConstantManage; |
| | |
| | | import com.hdl.photovoltaic.internet.HttpClient; |
| | | import com.hdl.photovoltaic.listener.CloudCallBeak; |
| | | import com.hdl.photovoltaic.other.HdlCommonLogic; |
| | | import com.hdl.photovoltaic.other.HdlLogLogic; |
| | | import com.hdl.photovoltaic.other.HdlResidenceLogic; |
| | | import com.hdl.photovoltaic.other.HdlThreadLogic; |
| | | import com.hdl.photovoltaic.other.HdlUniLogic; |
| | |
| | | import com.hdl.photovoltaic.utils.LocalManageUtil; |
| | | import com.hdl.photovoltaic.utils.PermissionUtils; |
| | | import com.hdl.photovoltaic.widget.ConfirmationCancelDialog; |
| | | import com.hdl.photovoltaic.widget.PermissionExplanationDialog; |
| | | import com.hdl.sdk.link.core.bean.eventbus.BaseEventBus; |
| | | |
| | | import org.greenrobot.eventbus.Subscribe; |
| | | import org.greenrobot.eventbus.ThreadMode; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | initView(); |
| | | //初始化界面监听器 |
| | | initEvent(); |
| | | //后台读取住宅列表 |
| | | // downReadData(false); |
| | | } |
| | | |
| | | private void initData() { |
| | |
| | | viewBinding.addPowerStationTv.setOnClickListener(new View.OnClickListener() { |
| | | @Override |
| | | public void onClick(View v) { |
| | | |
| | | // 未授权 如果应用程序没有所需的权限,则显示解释说明 |
| | | PermissionExplanationDialog.getInstance().showPortConflictPdDialog(_mActivity, getString(R.string.camera_storage_instructions), getString(R.string.camera_storage_purpose)); |
| | | PermissionUtils.requestPermissionsResultCallback(_mActivity, Manifest.permission.CAMERA, new PermissionUtils.PermissionState() { |
| | | @Override |
| | | public void Success(int value) { |
| | | if (value == PermissionUtils.STATUS_REFUSE_PERMANENT) { |
| | | PermissionExplanationDialog.getInstance().dismiss(); |
| | | if (value == PermissionUtils.STATUS_REFUSE_PERMANENT | value == PermissionUtils.STATUS_REFUSE) { |
| | | // HdlThreadLogic.toast(_mActivity, R.string.permission_open); |
| | | return; |
| | | } |
| | | |
| | | |
| | | // startActivity(CaptureActivity.class); |
| | | startActivity(ScanActivity.class); |
| | | } |
| | | }, true); |
| | | // String path = HDLUniMP.UNI_EVENT_OPEN_DEVICESCAN + "?scanType=addPowerStation"; |
| | | // HdlUniLogic.getInstance().openUniMP(path, null); |
| | | // startActivity(FastScanActivity.class); |
| | | |
| | | } |
| | | }); |
| | |
| | | //关闭下拉刷新的圈圈 |
| | | viewBinding.fragmentHouseSrl.setRefreshing(false); |
| | | } |
| | | if (list != null && list.size() > 0) { |
| | | //更新缓存 |
| | | HdlResidenceLogic.getInstance().setHouseIdList(list); |
| | | if (houseListAdapter != null) { |
| | | initData(); |
| | | setSelectState(); |
| | | //更新UI |
| | | houseListAdapter.setList(houseListBeanIDList); |
| | | } |
| | | if (list != null && !list.isEmpty()) { |
| | | if (!comparableList(houseListBeanIDList, list)) { |
| | | //更新缓存 |
| | | HdlResidenceLogic.getInstance().setHouseIdList(list, true); |
| | | if (houseListAdapter != null) { |
| | | //重新获取列表数据 |
| | | initData(); |
| | | refreshDetails(); |
| | | //更新电站选中状态 |
| | | setSelectState(); |
| | | //更新列表数据 |
| | | houseListAdapter.setList(houseListBeanIDList); |
| | | } |
| | | |
| | | |
| | | } |
| | | } |
| | | nullDataUpdateUi(list); |
| | | } |
| | |
| | | //关闭下拉刷新的圈圈 |
| | | viewBinding.fragmentHouseSrl.setRefreshing(false); |
| | | } |
| | | |
| | | HdlThreadLogic.toast(_mActivity, e.getMsg() + "(" + e.getCode() + ")"); |
| | | |
| | | } |
| | | }, _mActivity, ShowErrorMode.YES); |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 比较住宅列表数据是否都一样 |
| | | * |
| | | * @param oldList 旧列表 |
| | | * @param newList 新列表 |
| | | * @return 相同返回true,否则返回false |
| | | */ |
| | | boolean comparableList(List<HouseIdBean> oldList, List<HouseIdBean> newList) { |
| | | if (oldList == null || newList == null) return false; |
| | | if (oldList.size() != newList.size()) return false; |
| | | List<String> oidStrList = new ArrayList<>(); |
| | | for (int i = 0; i < oldList.size(); i++) { |
| | | oidStrList.add(oldList.get(i).getHomeId()); |
| | | } |
| | | |
| | | List<String> newStrList = new ArrayList<>(); |
| | | for (int i = 0; i < newList.size(); i++) { |
| | | newStrList.add(newList.get(i).getHomeId()); |
| | | } |
| | | Collections.sort(oidStrList); |
| | | Collections.sort(newStrList); |
| | | return oidStrList.equals(newStrList); |
| | | } |
| | | |
| | | /** |
| | | * 通知uni更新数据 |
| | | * (在平台上删除C端当前住宅后,获取列表实收要通知uni那边更新界面卡片) |
| | | */ |
| | | private void refreshDetails() { |
| | | try { |
| | | List<HouseIdBean> localHouseIdList = HdlResidenceLogic.getInstance().getHouseIdList(); |
| | | if (localHouseIdList.isEmpty()) { |
| | | JsonObject jsonObject = new JsonObject(); |
| | | jsonObject.addProperty("homeId", ""); |
| | | HDLUniMP.UniCallBackBaseBean uniCallBackBaseBean = new HDLUniMP.UniCallBackBaseBean(); |
| | | uniCallBackBaseBean.setType(HDLUniMP.UNI_EVENT_NOTIFICATION_DEVICE_REFRESH_DETAILS); |
| | | uniCallBackBaseBean.setData(jsonObject); |
| | | HdlUniLogic.getInstance().sendUni(HDLUniMP.UNI_EVENT_NOTIFICATION_DEVICE_MODEL, uniCallBackBaseBean); |
| | | } else { |
| | | int select_home = -1; |
| | | for (int i = 0; i < localHouseIdList.size(); i++) { |
| | | if (localHouseIdList.get(i).getHomeId().equals(UserConfigManage.getInstance().getHomeId())) { |
| | | select_home = i; |
| | | break; |
| | | } |
| | | } |
| | | if (select_home == -1) { |
| | | //找不到默认第一个 |
| | | HouseIdBean houseIdBean = localHouseIdList.get(0); |
| | | HdlResidenceLogic.getInstance().switchHouse(houseIdBean, true); |
| | | JsonObject jsonObject = new JsonObject(); |
| | | jsonObject.addProperty("homeId", houseIdBean.getHomeId()); |
| | | jsonObject.addProperty("homeName", houseIdBean.getHomeName()); |
| | | jsonObject.addProperty("powerStationStatus", houseIdBean.getPowerStationStatus() + ""); |
| | | HDLUniMP.UniCallBackBaseBean uniCallBackBaseBean = new HDLUniMP.UniCallBackBaseBean(); |
| | | uniCallBackBaseBean.setType(HDLUniMP.UNI_EVENT_NOTIFICATION_DEVICE_REFRESH_DETAILS); |
| | | uniCallBackBaseBean.setData(jsonObject); |
| | | HdlUniLogic.getInstance().sendUni(HDLUniMP.UNI_EVENT_NOTIFICATION_DEVICE_MODEL, uniCallBackBaseBean); |
| | | } |
| | | } |
| | | } catch (Exception e) { |
| | | } |
| | | } |
| | | } |