2

J'ai une asynctask dont onPostExecute j'appelle une fonction pour afficher un customDialog.Appel d'une boîte de dialogue personnalisée à partir d'AsyncTask

Ceci est mon AsyncTask

private class DBTask extends AsyncTask<Long, Boolean, Integer>{ 
ProgressDialog ServerPD = new ProgressDialog(MRRankingActivity.this); 

@Override 
protected void onPreExecute() 
{ 
    ServerPD = ProgressDialog.show (MRRankingActivity.this, "", "Connecting to server...", true, false); 
}//End of onPreExecute 

@Override 
protected Integer doInBackground(Long... params) 
{ 
    int isSuccess=0; 
    publishProgress(isOnline()); 

     if(isOnline()) 
     { 

     getDBData(); 
       if(isOK) 
        { 
        isSuccess=1; 
        } 
     } 
    } 

    return isSuccess; 
} 

    @Override 
protected void onProgressUpdate(Boolean... isConnection) { 
// TODO Auto-generated method stub 

super.onProgressUpdate(isConnection); 
if(isOnline()) 
     { 
     ServerPD.setMessage("Retreving Data"); 
     } 
} 

@Override 
protected void onPostExecute(Integer result) { 
    if (ServerPD.isShowing()) 
    { 
     ServerPD.dismiss(); 
    } 
    if(result==1) 
     { 
      customDialog(); 
     } 

}//End of onPostExecute 

}//End of DBTask 

Et ceci est ma fonction customDialog

public void customDialog(){ 
    Dialog dialog=new Dialog(MRRankingActivity.this); 
    dialog.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); 
    dialog.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.string.app_name); 
    dialog.setContentView(R.layout.result_dialog); 
    final ListView ResultView = (ListView) findViewById(R.id.ListResult); 

    result_Adapter=new ArrayAdapter<String>(MRRankingActivity.this,android.R.layout.simple_list_item_1,result_Array); 

    //Bind Array Adapter to ListView 
    ResultView.setAdapter(result_Adapter); 
    dialog.show(); 

}//end of custom dialog function 

Ceci est mon result_dialog.xml

<?xml version="1.0" encoding="utf-8"?> 
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 

     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_height="fill_parent" 
     android:layout_width="fill_parent" 
     android:orientation="vertical"> 

      <ListView android:id="@+id/ListResult" 
       android:layout_height="wrap_content" 
       android:layout_width="fill_parent"/> 

     </LinearLayout> 

</RelativeLayout> 

Maintenant, quand je lance ce code que je reçois cette erreur

FATAL EXCEPTION: main 
java.lang.NullPointerException 

at com.lalsoft.mobileranking.MRRankingActivity.customDialog(MRRankingActivity.java) 
at com.lalsoft.mobileranking.MRRankingActivity$DBTask.onPostExecute(MRRankingActivity.java)  at com.lalsoft.mobileranking.MRRankingActivity$DBTask.onPostExecute(MRRankingActivity.java) 
at android.os.AsyncTask.finish(AsyncTask.java) 
at android.os.AsyncTask.access$300(AsyncTask.java) 
at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java) 
at android.os.Handler.dispatchMessage(Handler.java) 
at android.os.Looper.loop(Looper.java) 
at android.app.ActivityThread.main(ActivityThread.java) 
at java.lang.reflect.Method.invokeNative(Native Method) 
at java.lang.reflect.Method.invoke(Method.java) 

Si je commente

//ResultView.setAdapter(result_Adapter); 

dans ma fonction customDialog, le customDialog montrera, sans Listview. Cette erreur arrive quand je mets l'adaptateur à mon ListView. Comment résoudre ce problème ?? Que faire? S'il vous plaît aider

Répondre

2

Remplacer cette ligne final ListView ResultView = (ListView) dialog.findViewById (R.id.ListResult);

au lieu de la liste finale ResultView ResultView = (ListView) findViewById (R.id.ListResult);

+0

ce qui est arrivé ..? –

+0

Merci .. Il a travaillé :). Cela confirme que je suis un noob. Merci encore mon pote – Shijilal

+0

très bienvenue .... –

0

Dans votre code votre result_Adapter peut être nulle. C'est pourquoi, lorsque vous le définissez sur ResultView, il affiche NullPointerException.

Vérifiez également si result_Array contiennent des valeurs ou non.

+0

J'ai vérifié .. ils contiennent des valeurs. – Shijilal

+0

Comme CapDroid mentionné, supprimer ce dernier mot-clé pour ResultView – Mathew

Questions connexes