Я полагаю, что "родитель" здесь - это фактический listView, который я поместил в макет activity_main
...
public View getView(int position, View convertView, ViewGroup parent) {
View heroListItem = converView;
if(heroListItem == null)
{
heroListItem=LayoutInflater.from(Context).inflate(*a layout*,parent,false)
}
//the rest of the code...
}