Error inflating class ImageView

前端 未结 17 2452
失恋的感觉
失恋的感觉 2020-12-29 21:01

I\'ve been getting InflateException/ClassNotFoundException error intermittently. I\'ve seen similar errors before in SO but they were caused by spelling errors. I spelled \'

17条回答
  •  被撕碎了的回忆
    2020-12-29 21:53

    try to change

    v = View.inflate(getContext(), R.layout.event_show_row_layout, null);
    

    to

    v = View.inflate(getApplicationContext(), R.layout.event_show_row_layout, null);
    

提交回复
热议问题