Back to project page GPS2SMS.
The source code is released under:
GNU General Public License
If you think the Android project GPS2SMS 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 ru.perm.trubnikov.gps2sms; /* w w w .j a va 2s. co m*/ import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentPagerAdapter; public class SlideTabsPagerAdapter extends FragmentPagerAdapter { public SlideTabsPagerAdapter(FragmentManager fm) { super(fm); } @Override public Fragment getItem(int index) { switch (index) { case 0: // Top Rated fragment activity return new RepoFragmentCoords(); case 1: // Games fragment activity return new RepoFragmentSMSIn(); case 2: // Movies fragment activity return new RepoFragmentSMSOut(); } return null; } @Override public int getCount() { // get item count - equal to number of tabs return 3; } }