各行に異なるレイアウトのリストビューを実際に実装しようとしています。そして私はこれにこだわっています。rows.add(new ImageRow(LayoutInflater.from(FeedAdapter.this), feed));
パーツと同じでエラーが発生しますdescriptionRow
。
final List<Row> rows;
FeedAdapter(List<Feed> feeds) {
rows = new ArrayList<Row>();//member variable
for (Feed feed : feeds) {
//if it has an image, use an ImageRow
if (feed.getImageID() != null) {
rows.add(new ImageRow(LayoutInflater.from(FeedAdapter.this), feed));
} else {//otherwise use a DescriptionRow
rows.add(new DescriptionRow(LayoutInflater.from(FeedAdapter.this), feed));
}
}
}