0

私はこのコードを持っています: class AttemptLogin extends AsyncTask {

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        pDialog = new ProgressDialog(MyAkan.this);
        pDialog.setMessage("Attempting login...");
        pDialog.setIndeterminate(false);
        pDialog.setCancelable(true);
        pDialog.show();
    }

    @Override
    protected String doInBackground(String... arg0) {
        int success;
        String idnumber = etIdnumber.getText().toString();
        String password = etPassword.getText().toString();

        try {
            // Building Parameters
            List<NameValuePair> params = new ArrayList<NameValuePair>();
            params.add(new BasicNameValuePair("idnumber", idnumber));
            params.add(new BasicNameValuePair("password", password));

            JSONObject json = jsonParser.makeHttpRequest(LOGIN_URL, "POST",
                    params);

            success = json.getInt(TAG_SUCCESS);
            if (success == 1) {
                Log.d("Login Successful!", json.toString());

                Intent i = new Intent("com.gpplsmje.mac.akan.AKANMENU");
                String id = json.getString(TAG_IDNUMBER);
                i.putExtra("idnumber", id);
                finish();
                startActivity(i);
                return json.getString(TAG_MESSAGE);
            } else if (success == 0) {
                Log.d("Login Failure!", json.getString(TAG_MESSAGE));
                return json.getString(TAG_MESSAGE);
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(String file_url) {
        // TODO Auto-generated method stub
        pDialog.dismiss();
        if (file_url != null) {
            Toast.makeText(MyAkan.this, file_url, Toast.LENGTH_LONG).show();
        }
    }

}

このアプリはサーバーに接続し、エンコードされた JSON データを返します。自分のマシンのローカル サーバーでテストすると、問題なく動作します。サーバーに問題なく接続されます。しかし、サーバーの電源を切ってアプリを使用すると、アプリはロードされますが、ログイン試行の 1 分ほど後に停止します。おそらく最大 20 秒の進行状況を計る方法はありますか。時間がかかる場合は、進行状況ダイアログを閉じてメイン アクティビティに戻る必要がありますか?

ありがとう。

4

1 に答える 1

0

あなたの jsonParser オブジェクトはHTTPURLConnectionを使用して http リクエストを行いますか? もしそうなら、メソッドsetConnectTimeoutがあります。

DefaultHttpClientを使用している場合は、この質問をご覧くださいJava で Android の HttpResponse タイムアウトを設定する方法

Android 2.2 以上では、HTTPURLConnection を使用する方がよいことに注意してください。詳細については、 http: //android-developers.blogspot.fr/2011/09/androids-http-clients.html を参照してください。

于 2013-06-26T08:19:22.480 に答える