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

前端 未结 6 1650
终归单人心
终归单人心 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 16:01

    Maybe you can try to extend ActionBarActivity and for default layout for that activity set some layout that has ListView.

    Something like this:

    public class AlarmListActivity extends ActionBarActivity {
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.layout_with_list_view);
    
            ListView lv = (ListView) findViewById(R.id.listView1);
            // populate list view
        }
    }
    

    and correcponding layout file:

    
        
        
    
    

提交回复
热议问题