2014-03-25 119 views
0

我目前正在做一個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方法。

+0

是你的arrayadapter的getview嗎? –

回答

0

在片段中,調用getActivity()來獲取活動實例。

我想你需要

itemView = getActivity().getLayoutInflater().... 
0

你應該附上ContextAdapter這樣的:

public class MyAdapter extends BaseAdapter { 
    private Context mContext; 

    public MyAdapter(Context c) { 
     mContext = c; 
    } 

    ... 
} 

有了這個,你可以得到你的背景 - FragmentActivity - 與mContext變量,並用它在你的Adapter

LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
... 
itemView = inflater.inflate(R.layout.news_rss_item, null);