From 969a251801a4553920b799ba9be0fcb9e69e47ed Mon Sep 17 00:00:00 2001 From: mac <user@users-MacBook-Pro.local> Date: 星期四, 14 三月 2024 13:44:40 +0800 Subject: [PATCH] 2024年03月14日13:44:32 --- app/src/main/java/com/hdl/photovoltaic/ui/newC/MessageCenterList.java | 36 ------------------------------------ 1 files changed, 0 insertions(+), 36 deletions(-) diff --git a/app/src/main/java/com/hdl/photovoltaic/ui/newC/MessageCenterList.java b/app/src/main/java/com/hdl/photovoltaic/ui/newC/MessageCenterList.java index 7c2523b..6b4bfd0 100644 --- a/app/src/main/java/com/hdl/photovoltaic/ui/newC/MessageCenterList.java +++ b/app/src/main/java/com/hdl/photovoltaic/ui/newC/MessageCenterList.java @@ -11,8 +11,6 @@ import androidx.recyclerview.widget.RecyclerView; import androidx.swiperefreshlayout.widget.SwipeRefreshLayout; -import com.alibaba.fastjson.JSON; -import com.alibaba.fastjson.JSONObject; import com.google.gson.JsonObject; import com.hdl.linkpm.sdk.core.exception.HDLException; import com.hdl.photovoltaic.R; @@ -357,41 +355,7 @@ } - /** - * 璇诲彇娑堟伅銆愭湭璇绘暟閲忋�� - */ - private void getUnreadCount() { - HdlMessageLogic.getInstance().getMessageUntreatedCount(new CloudCallBeak<String>() { - @Override - public void onSuccess(String data) { - HdlThreadLogic.runMainThread(new Runnable() { - @Override - public void run() { - JSONObject jsonObject = JSON.parseObject(data); - if (jsonObject.containsKey("untreatedCount")) { - //鏈鐞嗘暟閲� - String untreatedCount = jsonObject.getString("untreatedCount"); - refreshCount(); - } - if (jsonObject.containsKey("unreadCount")) { - //鏈鏁伴噺 - String unreadCount = jsonObject.getString("unreadCount"); - } - } - }); - - } - - @Override - public void onFailure(HDLException e) { - TextView textView = _mActivity.findViewById(R.id.my_message_bottom_il2).findViewById(R.id.red_count_tv); - if (textView != null) { - textView.setVisibility(View.GONE); - } - } - }); - } @Subscribe(threadMode = ThreadMode.MAIN, sticky = true) -- Gitblit v1.8.0