我有一个列表视图和一个自定义适配器。它工作得非常完美,但现在我想添加类似不可点击标签的东西,如果条件为真的话。但如果条件为真,它也应该显示正常的列表项。这是我的问题,我不知道如何添加标签,然后添加正常项目。
我是初学者,我尝试了很多,但我没有得到它。
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView;
if (position == 3){
rowView = inflater.inflate(R.layout.event_date, parent, false);
TextView date = (TextView) rowView.findViewById(R.id.event_date);
// set text
} else {
rowView = inflater.inflate(R.layout.events_list, parent, false);
TextView title = (TextView) rowView.findViewById(R.id.event_title);
// set text
}
return rowView;
}