Skip to content

Instantly share code, notes, and snippets.

Created October 22, 2011 16:43
Show Gist options
  • Select an option

  • Save anonymous/1306190 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/1306190 to your computer and use it in GitHub Desktop.
String value = getIntent().getStringExtra("festival");
if(value.equals("diwali")){
txtv.setText(R.string.aboutdiwali);
}else if(value.equals("eid")){
txtv.setText(R.string.abouteid);
}else if(value.equals("christmas")){
txtv.setText(R.string.aboutchristmas);
}else{
txtv.setText("Error!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment