java.lang.NullPointerException in textview inside asyncTask



如果我使用下面的代码,我将没有错误,但会有一个冻结时间。

@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在textview。

有什么问题吗?谁能帮我解决NullPointerException出现的问题?

我看到你使用了tvProfilePic,但我不知道你在哪里定义它。

如果您没有定义它,则应该以与

类似的方式完成。

tvProfilePic = findViewById(R.id.profile_pic)

你在做这个吗?注意'profile_pic'是布局XML文档中的名称。

您正在使用tvProfilePic作为textview,但我看不到您在哪里定义它。如果你不定义它那就用
来定义tvProfilePic = findViewById(R.id.profile_pic)

你得到nullpointerexception因为你的tvProfilePic是空的

相关内容

  • 没有找到相关文章

最新更新