我的MainActivity擴展活動,我已經在通過MainActivity的實例其他類使用getContext()
並能正常工作在那裏,我的代碼:爲什麼我得到「方法getContext()未定義類型MainActivity」?
convertView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.nowview, parent, false);
類的構造函數:
public PictureCard(String url, String title, int index,
int pos, MainActivity parent)
{
this.parent = parent;
// ...
}
我如何打電話類
Card newCard = new PictureCard(links.get(index) , titles.get(index),
index, position, parent);
(父從在MainActivity類傳入,因爲這)
如果您發佈類的方法簽名和方法調用這將有助於 – stinepike
行更新,對不起缺乏細節 – Osman