ArrayAdapter
を拡張する顧客アダプタ(SongsAdapter
)があり、配列にはSong
というオブジェクトが含まれています。私のフラグメントonCreateView
メソッドで私はこのアダプタを初期化しようとしています。配列を最初に渡さずにリストビューのアダプタを作成する
adapter = new SongsAdapter(getContext(), arrayOfSongs);
問題はarrayOfSongs
は最初はnullです。ユーザーはiTunesのデータベース上の曲を検索しなければならないと私は応答を得るとき、私はJSONを解析し、曲のオブジェクトを作成し、私のアダプタに追加
adapter.addAll(songs);
、その後
adapter.notifyDataSetChanged();
が、私は例外が発生しています
ユーザーが最初に検索するまでリストビューを非表示にしてから、結果を表示するにはどうすればよいですか。どのようにしてアダプタを適切に初期化できますか?
は、ここに私のアダプタ
public class SongsAdapter extends ArrayAdapter<Song> {
public SongsAdapter(Context context, ArrayList<Song> songs) {
super(context, 0, songs);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
Song song = getItem(position);
if (convertView == null)
convertView = LayoutInflater.from(getContext()).inflate(R.layout.item_song, parent, false);
TextView artistName = (TextView) convertView.findViewById(R.id.artistName);
TextView trackName = (TextView) convertView.findViewById(R.id.trackName);
artistName.setText(song.getArtist());
trackName.setText(song.getTitle());
return convertView;
}
}
配列の初期値をnullではなくゼロにします。 –
空のArrayListを初期化して、アダプターの内部でヌル・チェックを使用するのではなく、アダプターに入れる必要があります。 –