我对Android开发很陌生,我对NullPointerException
提出了一个简单的问题。当从第一个活动页面按下按钮时,它会切换到第二个活动,其中有NullPointerException
。
这是main.xml“next”按钮的代码(按下切换活动的按钮):
<Button
android:id="@+id/ButtonNext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/next"
android:onClick="next">
</Button>
以下是第一项活动的代码:
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class CalorieIntakeCalculator extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void next(View view) {
Intent intentExercise = new Intent(view.getContext(), Exercise.class);
startActivityForResult(intentExercise, 0);
}
}
按下“下一步”按钮后,它会切换到锻炼活动:
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
public class Exercise extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.exercise);
final EditText weightField = (EditText) findViewById(R.id.EditTextWeight);
try {
((Global) this.getApplication()).setWeight(Integer.parseInt(weightField.getText().toString()));
} catch(NumberFormatException nfe) {
System.out.println("Could not parse " + nfe);
}
在练习课中,我将ContentView设置为exercise.xml。 在接下来的几个语句中,我想将全局整数权重设置为用户在EditTextWeight EditText框中放置的数字。 这是Global.java文件中的代码,它扩展了Appllication并生成全局变量:
import android.app.Application;
public class Global extends Application {
private int weight;
private int age;
private int feet;
private int inches;
//START WEIGHT
public int getWeight() {
return weight;
}
public void setWeight(int weight) {
this.weight = weight;
}
//END WEIGHT
//START AGE
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
//END AGE
//START FEET
public int getFeet() {
return feet;
}
public void setFeet(int feet) {
this.feet = feet;
}
//END FEET
//START INCHES
public int getInches() {
return inches;
}
public void setInches(int inches) {
this.inches = inches;
}
//END INCHES
}
当我尝试在模拟器中运行程序时,程序崩溃了。我查看了LogCat并在exercise.java中的这一行中找到了使用断点的NullPointerException
:
((Global) this.getApplication()).setWeight(Integer.parseInt(weightField.getText().toString()));
谢谢〜:)
答案 0 :(得分:1)
如果您想在整个应用程序中保留状态,我强烈建议您查看SharedPrefrences
系统。
通过应用程序中的任何活动或服务,您可以通过执行以下操作来访问共享首选项:
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
您还可以轻松地设置PreferencesActivity
来更改设置,而无需编写太多代码。
答案 1 :(得分:1)
空指针异常的一般提示。