2

さて、これはこのサイトでいくらか対処されていますが、私のコードが使用しているものに正確な問題があるとは思いません。完全に機能するCheckedTextViewsでlistViewを埋めています。ただし、アイテムをクリックするとチェックされますが、上下にスクロールするとランダムな行もチェックされます。ListViewがアイテムを追跡する方法と関係があるに違いないことを私は理解しています。現在、いくつかのエラーが発生しています。行のリストでハッシュマップを埋めようとしたので、どれがtrueに設定され、どれがfalseに設定されているかを追跡できます。しかし、私はどこに地図を実装してそれを埋めようとするかについては前向きではありません。

これが私のOnCreateです

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.viewmenu);

    //Get table name of menu clicked. 
    Bundle extras = getIntent().getExtras();
    tableName = extras.getString("table");

    // map each contact's name to a TextView in the ListView layout
    String[] from = new String[] { "name" };
    int[] to = new int[] { R.id.toppingCheckedTextView };

    for(int i=0; i< from.length; i++){
        map.put(i, false);
    }

    contactAdapter = new SimpleCursorAdapter(
            ViewToppingListing.this, R.layout.toppings_list_item, null, from, to);
    setListAdapter(contactAdapter); // set contactView's adapter
 } 

マップをonCreateに配置して塗りつぶそうとしましたが、nullpointerについて文句を言います。

これがOnListItemClickメソッドを使ってみたところです

 @Override
protected void onListItemClick(ListView arg0, View arg1, int arg2, long arg3){      
    final int index = arg2 - arg0.getFirstVisiblePosition();
    View v = arg0.getChildAt(index);
    CheckedTextView ctv = (CheckedTextView) v.findViewById(R.id.toppingCheckedTextView);

    if((Boolean)map.get(index) == true){
        ctv.setChecked(true);
        ctv.setVisibility(View.VISIBLE);

    } else{
        ctv.setVisibility(View.GONE);
    }   

} 

私はこれについてたくさん読んだことがあり、多くの解決策にはgetView()の使用が含まれているようですが、それが私の状況に当てはまるかどうかはわかりません。どんな助けでも大歓迎です!

4

1 に答える 1

1

まず第一に、あなたは必要SimpleCursorAdapterですか?nullカーソルを使用してアダプターを設定します。

contactAdapter = new SimpleCursorAdapter(
            ViewToppingListing.this, R.layout.toppings_list_item, null, from, to); // the third parameter is the cursor and you set it to null!

表示される動作は、ListViewビューのリサイクルであり、独自のアダプターとオーバーライドを実装する必要がありますbindView()。以下のコードは、同様の質問への別の回答に基づいています( ListView から選択したビューを取得する)。次に例を示します。

public class TestCursorAdapter extends ListActivity {

    MySimpleAdapter adapter;
    private HashMap<Long, Boolean> positionHide = new HashMap<Long, Boolean>();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        String[] columns = new String[] { "_id", "name" };
        MatrixCursor mc = new MatrixCursor(columns); // cursor for testing
        for (int i = 1; i < 35; i++) {
            long id = i;
            mc.addRow(new Object[] { id, "Name" + i });
        }
        String[] from = new String[] { "name" };
        int[] to = new int[] { R.id.checked_text };
        adapter = new MySimpleAdapter(this,
                R.layout.adapter_mysimpleadapter_row, mc, from, to);
        setListAdapter(adapter);
    }

    private class MySimpleAdapter extends SimpleCursorAdapter {

        public MySimpleAdapter(Context context, int layout, Cursor c,
                String[] from, int[] to) {
            super(context, layout, c, from, to);
        }

        @Override
        public void bindView(View view, Context context, Cursor cursor) {
            super.bindView(view, context, cursor);
            CheckedTextView ctv = (CheckedTextView) view
                    .findViewById(R.id.checked_text);
            long pos = cursor.getLong(0); // the id from the cursor
            if (positionHide.get(pos) == null) {
                ctv.setChecked(false);
                // we don't have this id in the hashmap so the value is by
                // default false, the TextView is GONE
            } else {
                // we have the value in the Hashmap so see what it is and set
                // the textview visibility from this value
                Boolean tmp = positionHide.get(pos);
                if (tmp.booleanValue()) {
                    ctv.setChecked(true);
                } else {
                    ctv.setChecked(false);
                }
            }

        }

    }

    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        Boolean tmp = positionHide.get(id);
        if (tmp == null) {
            // if null we don't have this key in the hashmap so
            // we add it with the value true
            positionHide.put(id, true);
        } else {
            positionHide.put(id, !tmp.booleanValue());
            // if the value exists in the map then inverse it's value
        }
        adapter.notifyDataSetChanged(); // notify the adapter that something has
                                        // changed
    }
}
于 2012-03-18T18:15:53.077 に答える