package net.cs76.section.android.activity;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class NextActivity extends Activity {

	public void onCreate(Bundle bundle) {
		super.onCreate(bundle);
		setContentView(R.layout.next);
		TextView namePrompt = (TextView) findViewById(R.id.name);
		Bundle icicle = getIntent().getExtras();
		if (icicle.containsKey("name"))
			namePrompt.setText("Hello, "+icicle.getString("name"));
		else
			namePrompt.setText("ERROR: No Name inputted");
	}
}
