Searched refs:currentStep (Results 1 – 6 of 6) sorted by relevance
61 public void setTutorialProgress(int currentStep, int totalSteps) { in setTutorialProgress() argument62 if (currentStep <= 0) { in setTutorialProgress()63 Log.w(LOG_TAG, "Current step number invalid: " + currentStep + ". Assuming step 1."); in setTutorialProgress()64 currentStep = 1; in setTutorialProgress()70 if (currentStep > totalSteps) { in setTutorialProgress()73 currentStep = totalSteps; in setTutorialProgress()80 mCurrentStep = currentStep; in setTutorialProgress()
153 int currentStep = extras.getInt(KEY_CURRENT_STEP, -1); in getTutorialSteps() local174 mCurrentStep = Math.max(currentStep, 1); in getTutorialSteps()
156 Command currentStep = mSteps.get(index); in startProcess() local157 Log.d(TAG, "processing : " + currentStep); in startProcess()160 result = currentStep.process(); in startProcess()162 Log.d(TAG, "Failed on : " + currentStep, e); in startProcess()169 Log.d(TAG, "Failed on : " + currentStep); in startProcess()188 for (Command currentStep : restoreCommands) { in restoreAllSteps()189 Log.d(TAG, "restoreStep: " + currentStep); in restoreAllSteps()191 if (currentStep instanceof UpdateCommand) { in restoreAllSteps()192 ((UpdateCommand) currentStep).onRestore(); in restoreAllSteps()
117 int currentStep = 0; in onCreate() local119 currentStep = savedInstanceState.getInt(KEY_STATE_CURRENT_STEP); in onCreate()121 initSteps(currentStep); in onCreate()163 private void initSteps(int currentStep) { in initSteps() argument171 mCurrentStep = currentStep; in initSteps()
244 CacheStep currentStep = mSteps.elementAt(i); in process() local245 Bitmap bitmap = currentStep.cache; in process()246 currentStep.cache = null; in process()
236 final int currentStep = determineSetupStepNumber(); in onClick() local242 } else if (v == mStep1Bullet && currentStep == STEP_2) { in onClick()