Java tutorial
/* * Copyright 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.school.mailclient.app.fragment; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentPagerAdapter; public class PagerAdapter extends FragmentPagerAdapter { public PagerAdapter(FragmentManager fm) { super(fm); } @Override public Fragment getItem(int i) { switch (i) { case 0: // The other sections of the app are dummy placeholders. Fragment fragment = new InboxFragment(); Bundle args = new Bundle(); args.putInt(InboxFragment.ARG_SECTION_NUMBER, i + 1); fragment.setArguments(args); return fragment; case 1: // The other sections of the app are dummy placeholders. Fragment fragment2 = new SentFragment(); Bundle args2 = new Bundle(); args2.putInt(InboxFragment.ARG_SECTION_NUMBER, i + 1); fragment2.setArguments(args2); return fragment2; default: return null; } } @Override public int getCount() { return 2; } @Override public CharSequence getPageTitle(int position) { switch (position) { case 0: return "Inbox"; case 1: return "Gesendet"; default: return null; } } }