Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
BasicSyncAdapter / src / com.example.android.basicsyncadapter /

EntryListActivity.java

       
        1
       
       
        package com.example.android.basicsyncadapter;
       
       
        2
       
       
       
       
        3
       
       
        import android.os.Bundle;
       
       
        4
       
       
        import android.support.v4.app.FragmentActivity;
       
       
        5
       
       
       
       
        6
       
       
        /**
       
       
        7
       
       
        * Activity for holding EntryListFragment.
       
       
        8
       
       
        */
       
       
        9
       
       
        public class EntryListActivity extends FragmentActivity {
       
       
        10
       
       
       
       
        11
       
       
        @Override
       
       
        12
       
       
        protected void onCreate(Bundle savedInstanceState) {
       
       
        13
       
       
        super.onCreate(savedInstanceState);
       
       
        14
       
       
        setContentView(R.layout.activity_entry_list);
       
       
        15
       
       
        }
       
       
        16
       
       
        }