私はこれを理解しようと一日中費やしましたが、それは私を夢中にさせています。ここの専門家がこれを理解するのを助けてくれることを願っています ボタンをクリックするとポップアップするダイアログウィンドウに ListView を入力しようとしています。アクティビティの開始時に asynctask コードを開始すると、すべて正常に動作しますが、ボタン OnClickListener のいずれかにコードを移動しようとすると、リストビューが二重に埋められます。
コードは次のとおりです。
私のOnCreateで:
new LoadAllProducts().execute();
次のコードを実行します。
class LoadAllProducts extends AsyncTask<String, String, String> {
/**
* Before starting background thread Show Progress Dialog
* */
@Override
protected void onPreExecute() {
super.onPreExecute();
}
/**
* getting All products from url
* */
@Override
protected String doInBackground(String... args) {
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
// getting JSON string from URL
JSONObject json = jParser.makeHttpRequest(url_get_classes, "GET",
params);
// Check your log cat for JSON response
Log.d("All Classes: ", json.toString());
try {
// Checking for SUCCESS TAG
int success = json.getInt(TAG_SUCCESS);
if (success == 1) {
// classes found
// Getting Array of Classes
classes = json.getJSONArray(TAG_CLASSES);
// looping through All Classes
for (int i = 0; i < classes.length(); i++) {
JSONObject c = classes.getJSONObject(i);
// Storing each json item in variable
String id = c.getString(TAG_CLASSID);
String name = c.getString(TAG_CLASSNAME);
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
// adding each child node to HashMap key => value
map.put(TAG_CLASSID, id);
map.put(TAG_CLASSNAME, name);
// adding HashList to ArrayList
classesList.add(map);
}
}
} catch (JSONException e) {
e.printStackTrace();
}
return null;
}
/**
* After completing background task Dismiss the progress dialog
* **/
@Override
protected void onPostExecute(String file_url) {
runOnUiThread(new Runnable() {
@Override
public void run() {
}
});
}
}
ボタンの OnClickListener には、次のものがあります。
onCreateDialog().show();
次のダイアログが表示されます。
protected Dialog onCreateDialog() {
//Set up dialog
dialog = new Dialog(context);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.checkindialog);
Button canceldialog = (Button) dialog.findViewById(R.id.btncancel);
//Define ListView and set it's empty view in case no results come back
this.lv = (ListView) dialog.findViewById(R.id.lvCheckin);
this.lv.setEmptyView(dialog.findViewById(R.id.empty));
TextView header = (TextView) dialog.findViewById(R.id.lblCheckin);
Typeface tf = Typeface.createFromAsset(getAssets(),
"fonts/roboto-light.ttf");
header.setTypeface(tf);
//ArrayAdapter<String> listAdapter = new ArrayAdapter<String>(this,
// R.layout.checkin_item, R.id.list_content, checkinOptions);
ListAdapter adapter = new SimpleAdapter(Checkin.this, classesList,
R.layout.checkin_item, new String[] { TAG_CLASSID,
TAG_CLASSNAME }, new int[] { R.id.pid, R.id.name });
lv.setAdapter(adapter);
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> listAdapter, View arg1,
int position, long arg3) {
CheckIn checkin = new CheckIn();
TextView txt = (TextView) listAdapter.getChildAt(
position - lv.getFirstVisiblePosition()).findViewById(
R.id.name);
String CheckinMessage = Utilities.getFacebookCheckinMessage(txt
.getText().toString(), context);
checkin.CheckInToFacebook(CheckinMessage, activity);
}
});
canceldialog.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});
return dialog;
}
私が言ったように、これは正常に機能しますが、リストビューはアクティビティが起動されたときにのみデータを取得し、ボタンがクリックされたときにそれを実行しようとしています。私は2つのことを試しました。「onCreateDialog().show();」の移動 AsncTask の「onPostExecute」に移動しましたが、これは正しく機能せず、「new LoadAllProducts().execute();」を移動しようとしました。ondialog create イベントと、ボタン クリック リスナーのインラインの両方に挿入します。これらはどちらも、毎回リストビューをクリア/リフレッシュするのではなく、リストビューに継続的に追加するだけです。
おそらく愚かなことだと確信しているので、誰かが助けてくれることを本当に願っていますが、これは今日一日中私のお尻を蹴っています.
前もって感謝します!