Я не знаю, почему, но мой список не обновляется ... Я вызываю notifyDataSetChanged(), и я также попробовал другой ответ, где они просили сделать это :Мой список не обновляется даже после вызова notifydatasetchanged()
private void editTransaction(int position) {
h = historyItems.get(position);
historyItems.remove(position);
this.position = position;
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == 5 && resultCode == RESULT_OK) {
String description = data.getStringExtra("description");
if (description == null) description = "no description";
double amount = Double.parseDouble(data.getStringExtra("amount"));
h.setDescription(description);
h.setAmount(amount);
//h.setTimestamp(System.currentTimeMillis());
//this is where I am updating my arraylist....
historyItems.add(position,h);
adapter.notifyDataSetChanged();
user.makeEdit(h);
}
}
это в моем обычном адаптере.
public class HistoryCustomAdapter extends BaseAdapter {
Context context;
ArrayList<HistoryItem> historyItems;
HashMap<String,String> iconMapper;
private static LayoutInflater inflater=null;
public HistoryCustomAdapter(Context context, ArrayList<HistoryItem> historyItems, HashMap<String, String> iconMapper) {
this.context=context;
this.historyItems=historyItems;
this.iconMapper=iconMapper;
inflater = (LayoutInflater)context.
getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public int getCount() {
return historyItems != null ? historyItems.size() : 0;
}
@Override
public Object getItem(int position) {
return historyItems.get(position);
}
@Override
public long getItemId(int position) {
return 0;
}
@Override
@Override
public View getView(int position, View convertView, ViewGroup parent) {
Holder holder;
if (convertView == null) {
holder = new Holder();
LayoutInflater vi = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = vi.inflate(R.layout.history_item, parent, false);
holder.tvCat = (TextView)convertView.findViewById(R.id.tv_category);
holder.tvAmt = (TextView)convertView.findViewById(R.id.tv_amount);
holder.tvDate = (TextView)convertView.findViewById(R.id.tv_date);
holder.img = (ImageView)convertView.findViewById(R.id.iv);
convertView.setTag(holder);
}
holder=(Holder)convertView.getTag();
HistoryItem historyItem;
historyItem = historyItems.get(position);
holder.tvCat.setText(historyItem.getCategory());
holder.tvAmt.setText(historyItem.getAmount()+"");
DateFormat df = new SimpleDateFormat("yyyy/MM/dd kk:mm:ss");
Calendar c = Calendar.getInstance();
c.setTimeInMillis(historyItem.getTimestamp());
Date day = c.getTime();
holder.tvDate.setText(df.format(day));
Resources res = context.getResources();
String mDrawableName = iconMapper.get(historyItem.getCategory());
int resID = res.getIdentifier(mDrawableName , "drawable", context.getPackageName());
holder.img.setImageResource(resID);
return convertView;
}
public void refresh(ArrayList<HistoryItem> historyItems)
{
this.historyItems.clear();
this.historyItems.addAll(historyItems);
//notifyDataSetChanged();
}
public class Holder
{
TextView tvCat,tvAmt,tvDate;
ImageView img;
}
}
Я не знаю, почему мой список не обновляется сразу ... Должен ли я переключиться на ArrayAdapters?
Является ли этот класс ArrayAdapter? Если это так, используйте 'adapter.addAll' вместо вашего метода обновления. –
Это не сработало ... это дало мне ясный экран –
public void refresh (ArrayList historyItems) { this.historyItems.clear(); this.historyItems = historyItems; notifyDataSetChanged(); } –