Created
June 2, 2011 17:24
-
-
Save gsathya/1004854 to your computer and use it in GitHub Desktop.
This is the one I wrote
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.torproject.android; | |
import android.app.Activity; | |
import android.content.Context; | |
import android.os.Bundle; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.ImageView; | |
import android.widget.TextView; | |
public class WizardActivity extends Activity implements TorConstants{ | |
private Context context; | |
private int step = -1; | |
protected void onCreate(Bundle savedInstanceState) | |
{ | |
super.onCreate(savedInstanceState); | |
} | |
@Override | |
protected void onStart() { | |
super.onStart(); | |
if (step == -1) | |
{ | |
setContentView(R.layout.scrollingtext_buttons_view); | |
stepOne(); | |
} | |
} | |
@Override | |
protected void onResume() { | |
super.onResume(); | |
} | |
public WizardActivity(Context context) { | |
this.context = context; | |
} | |
/*public void startWizard(){ | |
switch(step){ | |
case -1 : stepOne();break; | |
} | |
} | |
*/ | |
private void stepOne() { | |
step++; | |
//setContentView(R.layout.scrollingtext_buttons_view); | |
String title = context.getString(R.string.wizard_title); | |
String msg = context.getString(R.string.wizard_title_msg); | |
TextView txtTitle = ((TextView)findViewById(R.id.WizardTextTitle)); | |
txtTitle.setText(title); | |
TextView txtBody = ((TextView)findViewById(R.id.WizardTextBody)); | |
txtBody.setText(msg); | |
Button btn1 = ((Button)findViewById(R.id.btnWizard1)); | |
Button btn2 = ((Button)findViewById(R.id.btnWizard2)); | |
ImageView img = (ImageView) findViewById(R.id.orbot_image); | |
btn1.setVisibility(Button.INVISIBLE); | |
img.setVisibility(ImageView.VISIBLE); | |
btn2.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View v) { | |
stepTwo(); | |
} | |
}); | |
} | |
private void stepTwo() { | |
step++; | |
setContentView(R.layout.scrollingtext_buttons_view); | |
String title = context.getString(R.string.wizard_warning_title); | |
String msg = context.getString(R.string.wizard_warning_msg); | |
TextView txtTitle = ((TextView)findViewById(R.id.WizardTextTitle)); | |
txtTitle.setText(title); | |
TextView txtBody = ((TextView)findViewById(R.id.WizardTextBody)); | |
txtBody.setText(msg); | |
Button btn1 = ((Button)findViewById(R.id.btnWizard1)); | |
Button btn2 = ((Button)findViewById(R.id.btnWizard2)); | |
ImageView img = (ImageView) findViewById(R.id.orbot_image); | |
btn1.setVisibility(Button.VISIBLE); | |
img.setVisibility(ImageView.INVISIBLE); | |
btn1.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View v) { | |
stepOne(); | |
} | |
}); | |
btn2.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View v) { | |
//stepThree(); | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment