Правильно ли я создаю свой собственный ArrayAdapter? - PullRequest
1 голос
/ 01 сентября 2010

Мой ListView заполняется правильно, но по какой-то причине добавление и удаление является странным и не работает должным образом! Я что-то не так делаю?

Настроить вещи в OnCreate ()

listView = (ListView) findViewById(R.id.ListView);

        registerForContextMenu(listView); 

        deserializeQuotes();

        if(quotes == null || quotes.size() == 0){
            quotes = new ArrayList<Quote>();
            //populateDefaultQuotes();
            //serializeQuotes();
            //getQuotesFromYQL();
        }

        this.quotesAdapter = new QuoteAdapter(this, R.layout.mainrow, quotes);
        listView.setAdapter(this.quotesAdapter);

        listView.setOnItemClickListener(new OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> a, View v, int position, long id) {
                deserializeQuotes();
                Quote myQuote = quotes.get(position);
                Toast toast = Toast.makeText(getApplicationContext(), myQuote.getName(), Toast.LENGTH_SHORT);
                toast.show();
            }
        });

Цитата Адаптер частного класса

private class QuoteAdapter extends ArrayAdapter<Quote> {

        private ArrayList<Quote> items;

        public QuoteAdapter(Context context, int textViewResourceId,
                ArrayList<Quote> items) {
            super(context, textViewResourceId, items);
            this.items = items;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View v = convertView;
            if (v == null) {
                LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                v = vi.inflate(R.layout.mainrow, null);
            }
            Quote q = items.get(position);
            if (q != null) {
                TextView nameText = (TextView) v.findViewById(R.id.nameText);
                TextView priceText = (TextView) v.findViewById(R.id.priceText);
                TextView changeText = (TextView) v.findViewById(R.id.changeText);

                if (nameText != null) {
                    nameText.setText(q.getSymbol());
                }
                if (priceText != null) {
                    priceText.setText(q.getLastTradePriceOnly());
                }
                if (changeText != null) {
                    changeText.setText(q.getChange());
                }
            }
            return v;
        }
    }

Удалить элемент из списка (ЭТО НЕ РАБОТАЕТ, НИЧЕГО НЕ ДЕЛАЕТ)

@Override  
    public boolean onContextItemSelected(MenuItem item) {  
        if(item.getTitle()=="Remove"){
            deserializeQuotes();
            AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
            quotesAdapter.remove(quotes.get(info.position));
            quotesAdapter.notifyDataSetChanged();
            serializeQuotes();
        }  
        else {
            return false;
        }  

        return true;  
    }  

Добавить товар в список (ЭТО РАБОТАЕТ)

 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_OK) {
        deserializeQuotes();
        this.quotesAdapter = new QuoteAdapter(this, R.layout.mainrow, quotes);      
        quotesAdapter.notifyDataSetChanged();
        listView.setAdapter(quotesAdapter);
    }
}

Вот как я сериализую и десериализую

private void serializeQuotes(){
        FileOutputStream fos;
        try {
            fos = openFileOutput(Constants.FILENAME, Context.MODE_PRIVATE);
            ObjectOutputStream oos = new ObjectOutputStream(fos);
            oos.writeObject(quotes); 
            oos.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }catch(IOException e){
            e.printStackTrace();
        }
    }

    @SuppressWarnings("unchecked")
    private void deserializeQuotes(){
        try{
            FileInputStream fis = openFileInput(Constants.FILENAME);
            ObjectInputStream ois = new ObjectInputStream(fis);
            quotes = (ArrayList<Quote>) ois.readObject();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }catch(IOException e){
            e.printStackTrace();
        }catch(ClassNotFoundException e){
            e.printStackTrace();
        }
    }

1 Ответ

0 голосов
/ 01 сентября 2010

Код вроде в порядке.Можете ли вы попробовать использовать это при удалении?:

if("Remove".equals(item.getTitle())) {
   //....
}

Редактировать:

Я только что заметил, что вы десериализовали объекты "Цитировать", вызывая deserializeQuotes(),Вы переопределили метод boolean equals(Object) объекта Quote?Когда вы десериализуете, созданные объекты не являются «одинаковыми», то есть они вообще являются новыми объектами, и если вы не переопределили метод equals:

quotesAdapter.remove(quotes.get(info.position));

потерпит неудачу, потому что не найдетлюбой объект цитаты, чтобы удалить в списке.

Вы можете это проверить?

...