0
私はウェブサービスのためにボレーを使用しています。だから、毎回アプリを実行するとリストに何も表示されません。しかし、私がデバッグを使うとき、時々私はリストを正しく得ました。ここにコードがあります。Android - jsonリストビュー
これは、jsonからデータを取得する前にListview
にlistItemを挿入するようなものです。私はアダプタの前にwait()を入れようとしましたが、アンドロイドのスタジオは受け付けません。
同様の問題があった人はいますか?
public class listedeal_res extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.listedeal_res);
Button ajouter=(Button) findViewById(R.id.ajouetres);
Intent i =getIntent();
final ListView maListView = (ListView) findViewById(R.id.liste_deal_res);
final int idres=i.getIntExtra("idres",0);
final boolean b =true;
ajouter.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(listedeal_res.this,AjouterDeal.class);
intent.putExtra("idres",idres);
listedeal_res.this.startActivity(intent);
}
});
final ArrayList<HashMap<String, String>> listItem = new ArrayList<HashMap<String, String>>();
final HashMap<String, String> map;
map = new HashMap<String, String>();
Response.Listener<String> resp=new Response.Listener<String>()
{
@Override
public void onResponse (String response) {
try {
JSONArray jsonResponse = new JSONArray(response);
int i=0;
while (jsonResponse.getJSONArray(i)!=null)
{
while (jsonResponse.getJSONArray(i)!=null)
{
map.put("Nom",jsonResponse.getJSONArray(i).getString(2));
map.put("Restraurant",jsonResponse.getJSONArray(i).getString(0));
map.put("description",jsonResponse.getJSONArray(i).getString(1));
listItem.add(map);
i++;
}
}
} catch (JSONException e) {
e.printStackTrace();
}
}
};
drinkeat.drinkandeat.javas.liste_deal_res_req liste_deal_res_req= new liste_deal_res_req(idres+"",resp);
RequestQueue queue= Volley.newRequestQueue(listedeal_res.this);
queue.add(liste_deal_res_req);
SimpleAdapter mSchedule = new SimpleAdapter (this.getBaseContext(), listItem, R.layout.row_deal_user,
new String[] {"Nom", "Restraurant", "description"}, new int[] {R.id.titlerow, R.id.resteaurantnaamerow, R.id.descriptionrow});
maListView.setAdapter(mSchedule);
}
}
以下(のようなあなたのアダプターにnotifydatasetchangeメソッドを追加します。方法 – Redman
Webサービスからデータを受信した後にアダプタを更新してみてください。 'ArrayList'に新しい項目を追加した後、' adapter.notifyDataSetChanged() 'を使います。 –
私はあなたに簡単に答えるために追加しました – Redman