5

現在、setAdapter を使用して ListView を更新していますが、適切な方法は notifiyDatasetChanged() を使用することであり、それをメイン クラス (アダプター内) で動作させることができません。エラーは次のとおりです。

メソッド notifyDatasetChanged() は、型 ListAdapter に対して未定義です

これを行うにはもっと良い方法があると思います-誰かが私を正しい方向に向けることができますか?

私のコードの関連部分は次のとおりです。

public class ScoreList extends SherlockFragmentActivity {

    private ListView listViewScore;

    static List<Score> listScore = new ArrayList<Score>();
    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.score_list);
        ctx = this;
        listScore = dbh.getAllScores();

        listViewScore = (ListView) findViewById(R.id.score_list);

        listViewScore.setAdapter(new ScoreListAdapter(ctx,
                R.layout.score_row_item, listScore));
        listViewScore.getAdapter().notifyDatasetChanged(); //this is where I get the error
    }
}

アダプタは次のとおりです。

public class ScoreListAdapter extends ArrayAdapter<Score> {
    private int resource;
    private LayoutInflater inflater;

    public ScoreListAdapter(Context ctx, int resourceId, List<Score> objects) {
        super(ctx, resourceId, objects);
        resource = resourceId;
        inflater = LayoutInflater.from(ctx);
        //context = ctx;
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {

        convertView = (LinearLayout) inflater.inflate(resource, null);

        Score score = getItem(position);

        TextView txtName = (TextView) convertView.findViewById(R.id.name);
        txtName.setText(score.getName());

        TextView txtScoreChange = (TextView) convertView
                .findViewById(R.id.scoreChange);
        int scoreChange = Integer.parseInt(score.getScoreChange());
        if (scoreChange > 0)
            txtScoreChange.setText("+" + scoreChange);
        else if (scoreChange < 0)
            txtScoreChange.setText("" + scoreChange);
        else
            txtScoreChange.setText("");

        TextView txtScoreTotal = (TextView) convertView
                .findViewById(R.id.scoreTotal);
        txtScoreTotal.setText(score.getScoreTotal());

        final LinearLayout currentRow = (LinearLayout) convertView
                .findViewById(R.id.scoreRowLayout);                 

        notifyDataSetChanged();
        return convertView;
    }   
}
4

2 に答える 2

3

カスタムアダプタのインスタンスを作成して、好きな場所で使用できるようにします...

public class ScoreList extends SherlockFragmentActivity {

private ListView listViewScore;

private ScoreListAdapter adapter;

static List<Score> listScore = new ArrayList<Score>();
@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.score_list);
    ctx = this;
    listScore = dbh.getAllScores();

    listViewScore = (ListView) findViewById(R.id.score_list);

    adapter = new ScoreListAdapter(ctx, R.layout.score_row_item, listScore);
    listViewScore.setAdapter(adapter);
    adapter.notifyDatasetChanged(); 
}
}

ちなみに、listScore配列がすでにロードされている場合は、を使用する必要はありません。

adapter.notifyDatasetChanged(); 
于 2013-02-13T18:12:02.003 に答える
1

notifyDataSetChanged();を呼び出さないでください。作成中のメソッド。

listViewScoreのコンテンツが変更されたときにのみ呼び出し、そのときに使用します-

交換

listView.getAdapter().notifyDatasetChanged();

((ScoreListAdapter)listView.getAdapter()).notifyDataSetChanged();

そして魔法を見てください...

ありがとう。

于 2013-02-13T18:02:47.137 に答える