Пример #1
0
 private void goIntent(ChatInfoBean chatInfoBean) {
   // TODO Auto-generated method stub
   chatInfoBean.setSubjectType("1");
   chatInfoBean.setStatus(true);
   DBUtilsHelper.getInstance().saveChatinfo(chatInfoBean);
   Intent i = new Intent();
   i.setClass(context, GroupChatActivity.class);
   Bundle bundle = new Bundle();
   bundle.putSerializable("chatInfoBean", chatInfoBean);
   i.putExtras(bundle);
   context.startActivity(i);
 }