java - app crashes when creating view (android.view.InflateException) -
public class childrenslist extends fragment { @nullable @override public view oncreateview(layoutinflater inflater, @nullable viewgroup container, @nullable bundle savedinstancestate) { view rootview = inflater.inflate(r.layout.childrens_list,container,false); //return rootview; imagebutton pigsbutton = (imagebutton) rootview.findviewbyid(r.id.pigsbutton); imagebutton jackbutton = (imagebutton) rootview.findviewbyid(r.id.jacksbutton); imagebutton hansgretbutton = (imagebutton) rootview.findviewbyid(r.id.hansgretbutton); imagebutton mermadbutton = (imagebutton) rootview.findviewbyid(r.id.mermaidbutton); imagebutton rapbutton = (imagebutton) rootview.findviewbyid(r.id.rapunzalbutton); imagebutton redridbutton = (imagebutton) rootview.findviewbyid(r.id.ridingbutton); imagebutton threebearsbutton = (imagebutton) rootview.findviewbyid(r.id.bearsbutton); imagebutton ugduckbutton = (imagebutto...