Ejemplo n.º 1
0
  // ÇëÇóÍü¼ÇÃÜÂë
  private void findPassWorld(String userName2) {

    findDialog = new ProgressDialog(getContext());
    findDialog.setMessage("ÕýÔÚÇëÇó...");
    findDialog.show();

    if (MyApplication.handler == null) {
      MyApplication.handler = mhandler;
    } else {
      if (MyApplication.handler != mhandler) {
        MyApplication.handler = null;
        MyApplication.handler = mhandler;
      }
    }

    FindPwdRequest request = new FindPwdRequest(userName2);

    Log.i(TAG, "ÕÒ»ØÃÜÂëÇëÇó£º" + request.getUrl() + ",body=" + request.requestJson());

    RequestThread thread = new RequestThread(request);
    thread.start();
  }