I / ViewRootImpl:ANR密钥分析:当前没有密钥事件。 ANR关键分析:重大事件为null,在1970-01-01 08:00:00.000完成 ANR Motion Analyze:当前没有运动事件。
当我按下按钮时我得到了,然后应用程序没有响应。
当我按下按钮时,将执行此功能。
public void deleteStoredArticle(){
new Thread(new Runnable() {
@Override
public void run() {
//已收藏此文章
//文章從storedArticle移除
firestore.collection("memberData").document(auth.getCurrentUser().getUid())
.collection("storedArticle").document(FragmentShare.aritcleId).delete();
}
}).start();
}