@Override public void onDestroy() { if (LogUtils.isActive) { Log.d(LOGTAG, "onDestroy"); } if (mGroupChat != null) { try { mGroupChat.setComposingStatus(false); } catch (RcsServiceException e) { Log.w(LOGTAG, ExceptionUtil.getFullStackTrace(e)); } } super.onDestroy(); }
@Override public void onDestroy() { if (LogUtils.isActive) { Log.d(LOGTAG, "onDestroy"); } super.onDestroy(); if (mFileTransferService != null && isServiceConnected(RcsServiceName.FILE_TRANSFER)) { // Remove file transfer listener try { mFileTransferService.removeEventListener(mFileTransferListener); } catch (RcsServiceException e) { Log.w(LOGTAG, ExceptionUtil.getFullStackTrace(e)); } } }