ActionBarActivity of “android-support-v7-appcompat” and ListActivity in Same activity

前端 未结 6 1649
终归单人心
终归单人心 2020-12-23 15:04

How to use ActionBarActivity of \"android-support-v7-appcompat\" in the activity which Extends the ListActivity.

For Example I have an Activity

publ         


        
6条回答
  •  佛祖请我去吃肉
    2020-12-23 15:39

    Add following line of code to your class and make sure that the class implements AdapterView.OnItemClickListener:

    getListView().setOnItemClickListener(this);
    

提交回复
热议问题