Java Source Code (Cont.)

package com.example.wenchen.helloworld;
The package reference is com.example.wenchen.helloworld.

import android.app.Activity;
An activity is a single application entity that is used to perform actions. An application may have many separate activities, but the user interacts with them one at a time. Almost all activities interact with the user, so the Activity class takes care of creating a window for you in which you can place your UI with setContentView(View).

import android.content.Intent;
An intent is an abstract description of an operation to be performed. It can be used with startActivity to launch an Activity. Its most significant use is in the launching of activities, where it can be thought of as the glue between activities.

import android.os.Bundle;
It is a mapping from String values to various Parcelable types. Android use Parcel, which is a container for a message (data and object references), to pass data through services.

import android.view.View;
This class represents the basic building block for user interface components. A View occupies a rectangular area on the screen and is responsible for drawing and event handling. View is the base class for widgets, which are used to create interactive UI components (buttons, text fields, etc.).

import android.widget.Button;
It represents a push-button widget. Push-buttons can be pressed, or clicked, by the user to perform an action.
HelloWorld/app/src/main/java/com/example/wenchen/helloworld/MainActivity.java
01package com.example.wenchen.helloworld;
02 
03import android.app.Activity;
04import android.content.Intent;
05import android.os.Bundle;
06import android.view.View;
07import android.widget.Button;
08import android.widget.EditText;
09import android.support.v7.app.AppCompatActivity;
10import android.view.Menu;
11import android.view.MenuItem;
12 
13public class MainActivity extends AppCompatActivity {
14  @Override
15  protected void onCreate( Bundle savedInstanceState ) {
16    super.onCreate( savedInstanceState );
17    setContentView( R.layout.activity_main );
18    final EditText name = (EditText) findViewById( R.id.name );
19    final Button button = (Button)   findViewById( R.id.next );
20    button.setOnClickListener(
21      new View.OnClickListener( ) {
22        public void onClick( View v ) {
23          /** Here i calls a new screen. **/
24          Intent i = new Intent( MainActivity.this, NextActivity.class );
25          i.putExtra( "name", name.getText( ).toString( ) );
26          startActivity( i );
27        }
28      }
29    );
30  }
31 
32  @Override
33  public boolean onCreateOptionsMenu( Menu menu ) {
34    // Inflate the menu; this adds items to the action bar if it is present.
35    getMenuInflater( ).inflate( R.menu.menu_main, menu );
36    return true;
37  }
38 
39  @Override
40  public boolean onOptionsItemSelected( MenuItem item ) {
41    // Handle action bar item clicks here.  The action bar will
42    // automatically handle clicks on the Home/Up button, so long
43    // as you specify a parent activity in AndroidManifest.xml.
44    int id = item.getItemId( );
45 
46    // noinspection SimplifiableIfStatement
47    if ( id == R.id.action_settings ) {
48      return true;
49    }
50    else if ( id == R.id.next ) {
51      Intent i = new Intent( MainActivity.this, NextActivity.class );
52      startActivity( i );
53    }
54    return super.onOptionsItemSelected( item );
55  }
56}