I am unable to extend my activity to listactivity. help needed

后端 未结 3 1733
感动是毒
感动是毒 2021-01-22 12:10

I am unable to extend my activity to listactivity. I want to extend it to listactivity and add onclicklistener to the list items.

public class MainActivity exten         


        
3条回答
  •  清酒与你
    2021-01-22 13:04

    if you're gonna use a ListActivity then you don't need this line:

    ListView lView = (ListView) findViewById(R.id.lvApps);
    

    BUT that specific ListView being referred to right now (provided it's in the corresponding xml layout) must have it's id changed to

提交回复
热议问题