Reputation: 113
I am a student and this is an assignment. I followed the directions for this program but when I run my app it crashes. Based off of the stack trace I believe the issue is with the Intent. But I do not know for sure. Could someone examine my code and explain what is wrong and why.
The main activity that calls another activity
package edu.cvtc.android.activitylab;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
public class EnterNameActivity extends Activity implements OnClickListener{
android.widget.EditText nameField;
android.widget.Button okButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.name_getter);
//EditText nameField = (EditText) findViewById(R.id.editText1);
this.nameField.findViewById(R.id.editText1);
//Button okButton = (Button) findViewById(R.id.button1);
this.okButton.findViewById(R.id.button1);
//EditText and Button are used to type cast the variables because
//findViewById only returns an object.
okButton.setOnClickListener(this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_entername, menu);
return true;
}
@Override
public void onClick(View v) {
// Get the text value the user entered
String tempText = nameField.getText().toString();
//Clear the text field if there is data
if(tempText != ""){
nameField.setText("");
}
//Create an Intent to call another activity
Intent myIntent = new Intent(this, LayoutMainActivity.class);
//Passing the user entered name to the main greeting activity
myIntent.putExtra("name", tempText);
this.startActivity(myIntent);
}
}
The other activity
package edu.cvtc.android.activitylab;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.TextView;
public class LayoutMainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_main);
android.os.Bundle temp = this.getIntent().getExtras();
if(temp != null){
//Extract the username from the bundle
String userName = temp.getString("name");
//get the TextView Id to change the text
TextView text = (TextView) findViewById(R.id.textView1);
text.setText("Hello " + userName);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_layout_main, menu);
return true;
}
}
The manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.cvtc.android.activitylab"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="edu.cvtc.android.activitylab.LayoutMainActivity"
android:label="@string/app_name" >
</activity>
<activity
android:name="edu.cvtc.android.activitylab.EnterNameActivity"
android:label="@string/title_activity_enter_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Stack trace from the debug
Thread [<1> main] (Suspended (exception RuntimeException))
<VM does not provide monitor information>
ActivityThread.handleLaunchActivity(ActivityThread$ActivityClientRecord, Intent) line: 2261
ActivityThread.access$600(ActivityThread, ActivityThread$ActivityClientRecord, Intent) line: 141
ActivityThread$H.handleMessage(Message) line: 1256
ActivityThread$H(Handler).dispatchMessage(Message) line: 99
Looper.loop() line: 137
ActivityThread.main(String[]) line: 5103
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) line: not available [native method]
Method.invoke(Object, Object...) line: 525
ZygoteInit$MethodAndArgsCaller.run() line: 737
ZygoteInit.main(String[]) line: 553
If you need any of the other XML files please let me know.
Upvotes: 1
Views: 410
Reputation: 28484
Try this way
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_main);
//Extract the username from the bundle
String userName = getIntent().getStringExtra("name"); // UPDATE HERE
//get the TextView Id to change the text
TextView text = (TextView) findViewById(R.id.textView1);
text.setText("Hello " + userName!=null?userName:""); // UPDATE HERE
}
Upvotes: 0
Reputation: 44571
You didn't provide the full stacktrace so its hard to say exactly what is causing your first error but there are many issues here. I will provide some comments in the code that hopefully will help.
First, you almost had your initialization of your View
s correct but you changed them. Change your onCreate()
from
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.name_getter);
//EditText nameField = (EditText) findViewById(R.id.editText1);
this.nameField.findViewById(R.id.editText1); // this returns an EditText object so it isn't being applied to a variable.
//Button okButton = (Button) findViewById(R.id.button1);
this.okButton.findViewById(R.id.button1);
//EditText and Button are used to type cast the variables because
//findViewById only returns an object.
okButton.setOnClickListener(this);
}
to
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.name_getter);
EditText nameField = (EditText) findViewById(R.id.editText1);
Button okButton = (Button) findViewById(R.id.button1);
okButton.setOnClickListener(this);
}
Also change your initialization of the Intent
to use the Activty
Context
by changing
//Create an Intent to call another activity
Intent myIntent = new Intent(this, LayoutMainActivity.class);
to
//Create an Intent to call another activity
Intent myIntent = new Intent(EnterNameActivity .this, LayoutMainActivity.class);
Here is another problem
if(tempText != ""){
when you compare String
s this way you compare if the objects are equal but not what they reference. It should be
if(!"".equals(tempText)){
This says, if an empty String
is not equal to the value of tempText
. Alternatively you may see
if (!tempText.equals("")){
but the first way will protect against a NPE
because if tempText
is null
you will get a NPE
in the second way since you would be calling a function on an object that is null
Upvotes: 1
Reputation: 4651
EditText nameField = (EditText) findViewById(R.id.editText1);
Button okButton = (Button) findViewById(R.id.button1);
//EditText and Button are used to type cast the variables because
//findViewById only returns an object.
okButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// Get the text value the user entered
String tempText = nameField.getText().toString();
//Clear the text field if there is data
if(tempText != ""){
nameField.setText("");
}
//Create an Intent to call another activity
Intent myIntent = new Intent(EnterNameActivity.this, LayoutMainActivity.class);
//Passing the user entered name to the main greeting activity
myIntent.putExtra("name", tempText);
startActivity(myIntent);
}
this is better way to deal with edittexts, buttons, and onClicks.
*remove onClick from activity, and remove onclick method and button and edittext importing methods that u used this.
Upvotes: 0
Reputation: 1686
What you are doing here is wrong I suppose:
//EditText nameField = (EditText) findViewById(R.id.editText1);
this.nameField.findViewById(R.id.editText1);
//Button okButton = (Button) findViewById(R.id.button1);
this.okButton.findViewById(R.id.button1);
//EditText and Button are used to type cast the variables because
//findViewById only returns an object.
Just replace:
this.nameField.findViewById(R.id.editText1);
and
this.okButton.findViewById(R.id.button1);
By:
nameField = (EditText) findViewById(R.id.editText1);
and
okButton = (Button) findViewById(R.id.button1);
Hope this helps.
Upvotes: 1