@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_story);
Intent intent = getIntent();
String name = intent.getStringExtra("name");
if (name == "d")
{
name = "Spike";
}
TextView heading = (TextView) findViewById(R.id.storyTextView);
heading.setText("And our story begins with " + name);