0

次のコードを使用すると、エラーは発生しませんが、フリーズ時間が発生します。

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
    StrictMode.setThreadPolicy(policy); 
    setContentView(R.layout.profilepic);
    initialize();
    Bundle bundle = getIntent().getExtras();
    email = bundle.getString("Email");
    ArrayList<NameValuePair> postParameters;
    String response = null;
    postParameters = new ArrayList<NameValuePair>();
    postParameters.add(new BasicNameValuePair("emaillog", email));              

    try {
        response = CustomHttpClient.executeHttpPost("http://whatstherex.info/checkU.php", postParameters);
        res = response.toString();
        res = res.replaceAll("null", "");                   
        username = res.toString();
        tvProfilePic.setText("Hi " + username + ", you are encourage to add a profile picture.");

    }catch(Exception e){
        res = e.toString();
        tvProfilePic.setText(res);
    }
}

しかし、このコードをasyncTaskとprogressDialogで次のように使用すると、次のようになります。

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
    StrictMode.setThreadPolicy(policy); 
    setContentView(R.layout.profilepic);
    initialize();
    getUsername();
}

private AsyncTask<String, Void, String> task;

public void getUsername(){      
    Bundle bundle = getIntent().getExtras();
    email = bundle.getString("Email");
    task = new AsyncTask<String, Void, String>() {

        ProgressDialog dialog;
        ArrayList<NameValuePair> postParameters;
        String response = null;

        @Override
        protected void onPreExecute() {
            //
            ArrayList<NameValuePair> postParameters = new ArrayList<NameValuePair>();
            postParameters.add(new BasicNameValuePair("emaillog", email));
            dialog = new ProgressDialog(Profilepic.this, ProgressDialog.STYLE_SPINNER);
            dialog.setMessage("Loading Data...");       
            dialog.show();
        }

        @Override
        protected String doInBackground(String... params) {
            //
            try {
                response = CustomHttpClient.executeHttpPost("http://whatstherex.info/checkU.php", postParameters);
                res = response.toString();
                res = res.replaceAll("null", "");   
                username = res.toString();
                return username;
            }catch(Exception e){
                res = e.toString();
                return res;
            }
        }

        @Override
        protected void onPostExecute(String result) {               
            if(result.length()< 25){
                username = result;
                tvProfilePic.setText("Hi " + result + ", you are encourage to add a profile picture.");
                dialog.dismiss();
            }else{
                tvProfilePic.setText(result);
                dialog.dismiss();
            }
        }
    };
    task.execute(); 
}

テキストビューにjava.lang.NullPointerException入ります。

どうしたの?誰かがこの問題を表示して解決する方法を教えてもらえますNullPointerExceptionか?

4

2 に答える 2

0

tvProfilePicを使用しているようですが、どこで定義しているかわかりません。

定義していない場合は、次のように定義する必要があります。

tvProfilePic = findViewById(R.id.profile_pic)

あなたはこれをしていますか?'profile_pic'はレイアウトXMLドキュメントの名前であることに注意してください。

于 2013-01-15T21:21:21.887 に答える