|
| 1 | +package com.layer_net.stepindicatorexample; |
| 2 | + |
| 3 | +import android.content.Intent; |
| 4 | +import android.support.v7.app.AppCompatActivity; |
| 5 | +import android.support.v7.widget.Toolbar; |
| 6 | + |
| 7 | +import android.support.v4.app.Fragment; |
| 8 | +import android.support.v4.app.FragmentManager; |
| 9 | +import android.support.v4.app.FragmentPagerAdapter; |
| 10 | +import android.support.v4.view.ViewPager; |
| 11 | +import android.os.Bundle; |
| 12 | +import android.view.LayoutInflater; |
| 13 | +import android.view.Menu; |
| 14 | +import android.view.MenuItem; |
| 15 | +import android.view.View; |
| 16 | +import android.view.ViewGroup; |
| 17 | + |
| 18 | +import android.widget.TextView; |
| 19 | + |
| 20 | +import com.layer_net.stepindicator.StepIndicator; |
| 21 | + |
| 22 | +public class MainActivity extends AppCompatActivity { |
| 23 | + |
| 24 | + private SectionsPagerAdapter mSectionsPagerAdapter; |
| 25 | + |
| 26 | + private ViewPager mViewPager; |
| 27 | + |
| 28 | + @Override |
| 29 | + protected void onCreate(Bundle savedInstanceState) { |
| 30 | + super.onCreate(savedInstanceState); |
| 31 | + setContentView(R.layout.activity_main); |
| 32 | + |
| 33 | + Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); |
| 34 | + setSupportActionBar(toolbar); |
| 35 | + // Create the adapter that will return a fragment for each of the three |
| 36 | + // primary sections of the activity. |
| 37 | + mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager()); |
| 38 | + |
| 39 | + // Set up the ViewPager with the sections adapter. |
| 40 | + mViewPager = (ViewPager) findViewById(R.id.viewPager); |
| 41 | + mViewPager.setAdapter(mSectionsPagerAdapter); |
| 42 | + |
| 43 | + StepIndicator stepIndicator = (StepIndicator)findViewById(R.id.step_indicator); |
| 44 | + stepIndicator.setupWithViewPager(mViewPager); |
| 45 | + |
| 46 | + |
| 47 | + } |
| 48 | + |
| 49 | + |
| 50 | + @Override |
| 51 | + public boolean onCreateOptionsMenu(Menu menu) { |
| 52 | + // Inflate the menu; this adds items to the action bar if it is present. |
| 53 | + getMenuInflater().inflate(R.menu.menu_main, menu); |
| 54 | + return true; |
| 55 | + } |
| 56 | + |
| 57 | + @Override |
| 58 | + public boolean onOptionsItemSelected(MenuItem item) { |
| 59 | + // Handle action bar item clicks here. The action bar will |
| 60 | + // automatically handle clicks on the Home/Up button, so long |
| 61 | + // as you specify a parent activity in AndroidManifest.xml. |
| 62 | + int id = item.getItemId(); |
| 63 | + |
| 64 | + //noinspection SimplifiableIfStatement |
| 65 | + if (id == R.id.action_swap) { |
| 66 | + startActivity(new Intent(MainActivity.this,CustomStepActivity.class)); |
| 67 | + finish(); |
| 68 | + return true; |
| 69 | + } |
| 70 | + |
| 71 | + return super.onOptionsItemSelected(item); |
| 72 | + } |
| 73 | + |
| 74 | + /** |
| 75 | + * A placeholder fragment containing a simple view. |
| 76 | + */ |
| 77 | + public static class PlaceholderFragment extends Fragment { |
| 78 | + /** |
| 79 | + * The fragment argument representing the section number for this |
| 80 | + * fragment. |
| 81 | + */ |
| 82 | + private static final String ARG_SECTION_NUMBER = "section_number"; |
| 83 | + |
| 84 | + public PlaceholderFragment() { |
| 85 | + } |
| 86 | + |
| 87 | + /** |
| 88 | + * Returns a new instance of this fragment for the given section |
| 89 | + * number. |
| 90 | + */ |
| 91 | + public static PlaceholderFragment newInstance(int sectionNumber) { |
| 92 | + PlaceholderFragment fragment = new PlaceholderFragment(); |
| 93 | + Bundle args = new Bundle(); |
| 94 | + args.putInt(ARG_SECTION_NUMBER, sectionNumber); |
| 95 | + fragment.setArguments(args); |
| 96 | + return fragment; |
| 97 | + } |
| 98 | + |
| 99 | + @Override |
| 100 | + public View onCreateView(LayoutInflater inflater, ViewGroup container, |
| 101 | + Bundle savedInstanceState) { |
| 102 | + View rootView = inflater.inflate(R.layout.fragment_main, container, false); |
| 103 | + TextView textView = (TextView) rootView.findViewById(R.id.section_label); |
| 104 | + textView.setText(getString(R.string.section_format, getArguments().getInt(ARG_SECTION_NUMBER))); |
| 105 | + return rootView; |
| 106 | + } |
| 107 | + } |
| 108 | + |
| 109 | + /** |
| 110 | + * A {@link FragmentPagerAdapter} that returns a fragment corresponding to |
| 111 | + * one of the sections/tabs/pages. |
| 112 | + */ |
| 113 | + public class SectionsPagerAdapter extends FragmentPagerAdapter { |
| 114 | + |
| 115 | + public SectionsPagerAdapter(FragmentManager fm) { |
| 116 | + super(fm); |
| 117 | + } |
| 118 | + |
| 119 | + @Override |
| 120 | + public Fragment getItem(int position) { |
| 121 | + // getItem is called to instantiate the fragment for the given page. |
| 122 | + // Return a PlaceholderFragment (defined as a static inner class below). |
| 123 | + return PlaceholderFragment.newInstance(position + 1); |
| 124 | + } |
| 125 | + |
| 126 | + @Override |
| 127 | + public int getCount() { |
| 128 | + // Show 3 total pages. |
| 129 | + return 4; |
| 130 | + } |
| 131 | + |
| 132 | + @Override |
| 133 | + public CharSequence getPageTitle(int position) { |
| 134 | + switch (position) { |
| 135 | + case 0: |
| 136 | + return "SECTION 1"; |
| 137 | + case 1: |
| 138 | + return "SECTION 2"; |
| 139 | + case 2: |
| 140 | + return "SECTION 3"; |
| 141 | + case 3: |
| 142 | + return "SECTION 4"; |
| 143 | + } |
| 144 | + return null; |
| 145 | + } |
| 146 | + } |
| 147 | +} |
0 commit comments