@Override public void onResume() { super.onResume(); MobclickAgent.onResume(this); String uid = LoginManage.getInstance().getStudent().getUid(); if (uid != null) { MyShiKeInfo(uid); } }
private void refreshUserInfo() { String uid = LoginManage.getInstance().getStudent().getUid(); SKAsyncApiController.User_Info( uid, new MyAsyncHttpResponseHandler(this, true) { public void onSuccess(String json) { my_teather = SKResolveJsonUtil.getInstance().My_teather1(json); money_text.setText("学分:" + my_teather.getPoints() + "分"); }; }); }