Back to project page InfoSecProj.
The source code is released under:
MIT License
If you think the Android project InfoSecProj 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 com.infosec.gesturelock; //from w ww. j a v a 2s. c om import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; /** * A fragment representing a single step in a wizard. The fragment shows a dummy title indicating * the page number, along with some dummy text. * * <p>This class is used by the {@link CardFlipActivity} and {@link * ScreenSlideActivity} samples.</p> */ public class TutActivityFrag extends Fragment { /** * The argument key for the page number this fragment represents. */ public static final String ARG_PAGE = "page"; /** * The argument key for the page number this fragment represents. */ public static final String ARG_IMAGE = "image"; /** * The fragment's page number, which is set to the argument value for {@link #ARG_PAGE}. */ private int mPageNumber; /** * The fragment's page number, which is set to the argument value for {@link #ARG_PAGE}. */ private int mImageNumber; /** * Factory method for this fragment class. Constructs a new fragment for the given page number. */ public static TutActivityFrag create(int pageNumber, int imgNumber) { TutActivityFrag fragment = new TutActivityFrag(); Bundle args = new Bundle(); args.putInt(ARG_PAGE, pageNumber); args.putInt(ARG_IMAGE, imgNumber); fragment.setArguments(args); return fragment; } public TutActivityFrag() { } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mPageNumber = getArguments().getInt(ARG_PAGE); mImageNumber = getArguments().getInt(ARG_IMAGE); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout containing a title and body text. ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.activity_tut_frag, container, false); // Set the title view to show the page number. ((ImageView) rootView.findViewById(R.id.tutImage)).setImageResource(mImageNumber); return rootView; } /** * Returns the page number represented by this fragment object. */ public int getPageNumber() { return mPageNumber; } /** * Returns the image number represented by this fragment object. */ public int getImageNumber() { return mImageNumber; } }