我使用的AsyncTask功能 內如何返回一個值時,異步執行完成,因爲我不能在這裏使用PostExecute方法的Android的AsyncTask PostExecute
AsyncTask.execute(new Runnable() {
public void run() {}}
繼承人的代碼。 我需要從SpinnerList中檢索值以在主線程上使用em。 但是,通常當我要求數據時,我會得到空值,因爲它沒有返回值。
AsyncTask.execute(new Runnable() {
public void run() {
try{
String fql = "SELECT uid, name FROM user WHERE is_app_user AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me())";
Bundle parameters = new Bundle();
parameters.putString("query", fql);
parameters.putString("method", "fql.query");
parameters.putString("access_token", fb.getAccessToken());
String Response = fb.request(parameters);
JSONArray json = new JSONArray(Response);
list = new ArrayList<String[][]>();
String[][] friendsToList = new String[1][2];
SpinnerList = new ArrayList<String>();
String TempToSpinnerList=new String();
for(int i = 0; i < json.length(); ++i){
friendsToList[0][0] = json.getJSONObject(i).getString("uid");
friendsToList[0][1] = json.getJSONObject(i).getString("name");
TempToSpinnerList= friendsToList[0][1];
list.add(friendsToList);
SpinnerList.add(TempToSpinnerList);
Log.e("Test"," "+friendsToList[0][1]+" "+friendsToList[0][0]);
}
//dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
//spinner.setAdapter(dataAdapter);
/* jsonUser = fb.request(parameters);
friendObj = Util.parseJson(jsonUser);
friendArray = friendObj.getJSONArray("data");
//
friendlist = new ArrayList<String[][]>();
String[][] friendsToList = new String[1][2];
int friendCount = 0;
String fId, fNm;
JSONObject friend;
for (int i = 0;i<friendArray.length();i++){
//Get a JSONObject from the JSONArray
friend = friendArray.getJSONObject(i);
//Extract the strings from the JSONObject
friendsToList[0][0] = friend.getString("id");
friendsToList[0][1] = friend.getString("name");
friendlist.add(friendsToList);
//Set the values to our arrays
Log.e("Tester",""+ friendsToList[0][0]+" "+ friendsToList[0][1]);
friendCount ++;}*/
}
catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (FacebookError e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}});
我們不能告訴你問什麼,你應該詳細說明。你想做什麼?你有什麼嘗試? – dmon
爲了更好的描述發佈您的所有AsyncTask函數,還可以在AsyncTask的onPostExecute方法中分配值。 – kabuto178
這是一個過時的Android方法,在一個新線程中執行任務...請使用AsyncTask在下面看到我的帖子,並將所有內容移動到您的'try {}'塊中以在我的代碼中的'doInBackground'函數內... – jamis0n