Initialization of the Activity after it is first created. Must at least
call {@link android.app.Activity#setContentView setContentView()} to
describe what is to be displayed in the screen.
// Be sure to call the super class.
super.onCreate(savedInstanceState);
// See assets/res/any/layout/hello_world.xml for this
// view layout definition, which is being set here as
// the content of our screen.
setContentView(R.layout.morse_code);
// Set the OnClickListener for the button so we see when it's pressed.
findViewById(R.id.button).setOnClickListener(mClickListener);
// Save the text view so we don't have to look it up each time
mTextView = (TextView)findViewById(R.id.text);