private void joinRealTimeLocation() {
   RongIMClient.getInstance().joinRealTimeLocation(mConversationType, targetId);
   Intent intent = new Intent(RongActivity.this, RealTimeLocationActivity.class);
   intent.putExtra("conversationType", mConversationType.getValue());
   intent.putExtra("targetId", targetId);
   startActivity(intent);
 }