Back to project page Paginize.
The source code is released under:
Copyright (c) 2014 neevek <i at neevek.net> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal ...
If you think the Android project Paginize listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.neevek.android.demo.paginize.activities; //from www . j a v a 2s .co m import android.os.Bundle; import net.neevek.android.demo.paginize.pages.main.MainPage; import net.neevek.android.lib.paginize.PageActivity; import net.neevek.android.lib.paginize.anim.SlidePageAnimator; import net.neevek.android.lib.paginize.annotation.InjectPageAnimator; //@InjectPageAnimator(ZoomPageAnimator.class) @InjectPageAnimator(SlidePageAnimator.class) public class MainActivity extends PageActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); new MainPage(this).show(null, false); // showPage(MainPage.class, true); } }