Listing 2-58. Activity with ListPagerAdapter

public class FragmentPagerActivity extends FragmentActivity {    private ArrayList<String> mListItems;    private ListPagerAdapter mAdapter;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        //Create the initial data set        mListItems = new ArrayList<String>();        mListItems.add("Mom");        mListItems.add("Dad");        mListItems.add("Sister");        mListItems.add("Brother");        mListItems.add("Cousin");        mListItems.add("Niece");        mListItems.add("Nephew");        //Attach the data to the pager        ViewPager pager =                (ViewPager) findViewById(R.id.view_pager); ...

Get Android Recipes: A Problem-Solution Approach for Android 5.0, Fourth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.