package com.sophiechang.section.android;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

public class AndroidPrimer3Activity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
    
    public void updateText(View v) {
    	EditText nameInput = (EditText) this.findViewById(R.id.nameinput);
    	TextView changingText = (TextView) this.findViewById(R.id.changingtext);
    	changingText.setText("Hello, "+nameInput.getText());
    }
}