我目前正在做一個android項目,現在需要在其中一個片段中使用片段而不是活動,我有一個使用Activity方法的getView方法,但我不太清楚如何將其更改爲符合片段,任何人都可以提供幫助?從活動變爲片段
public View getView(int position, View convertView, ViewGroup parent) {
//This method sets what each list view's items contain.
//Ensure the view isn't null
View itemView = convertView;
if (itemView == null) {
itemView = getLayoutInflater().inflate(R.layout.news_rss_item, parent, false);
}
//Find the current event to use
RssItem currentItem = newsItems.get(position);
//Replace default text with event information
//Set name
TextView itemTitle = (TextView) itemView.findViewById(R.id.itemEventName);
itemTitle.setText(currentItem.getTitle());
return itemView;
}
}
這是getView方法。
是你的arrayadapter的getview嗎? –