Cannot resolve getSystemService method in ListView adapter

后端 未结 8 1362
深忆病人
深忆病人 2021-01-25 00:23

I am working through John Horton\'s Android Programming for Beginners, and am currently attempting to create a note-taking app. Horton has just introduced ListVie

8条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-25 00:36

    You should pass Context to your adapter and then replace this line:

     LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    

    I hope this will help.

提交回复
热议问题