我的应用程序在此处setText
崩溃了。我想可能是因为它无法找到id所以我调查了R.java并在那里找到了id。我很困惑,为什么它仍然崩溃。
TextView city = (TextView)findViewById(R.id.city_result);
city.setText(msg[0]);
R.java
public static final int city_result=0x7f080041;
此代码位于public static final class id
方法中。
任何帮助将不胜感激!谢谢!
===== 更多代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_weather_report);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
//get message from intent
Intent intent = getIntent();
String[] message = intent.getStringArrayExtra(MainActivity.EXTRA_MESSAGE);
setResult(message);
}
public void setResult(String[] msg)
{
//test
TextView city = (TextView)findViewById(R.id.city_result);
city.setText(msg[0]);
}
这个文件我刚刚开始,其他地方只是系统生成的新文件代码,我还没有编辑。 这是logcat:
01-30 08:32:05.163 4408-4408/com.example.chen.weather E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.chen.weather, PID: 4408
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.chen.weather/com.example.chen.weather.WeatherReport}: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2298)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2360)
at android.app.ActivityThread.access$800(ActivityThread.java:144)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1278)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference
at com.example.chen.weather.WeatherReport.setResult(WeatherReport.java:78)
at com.example.chen.weather.WeatherReport.onCreate(WeatherReport.java:32)
at android.app.Activity.performCreate(Activity.java:5933)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1105)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2251)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2360)
at android.app.ActivityThread.access$800(ActivityThread.java:144)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1278)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
答案 0 :(得分:15)
NullPointerException:尝试调用虚方法' void android.widget.TextView.setText
表示city
TextView对象为null
,原因是:
setContentView
之前未调用 1。 findViewById
:
2。不使用TextView
定义city_result
ID的布局。确保您在setContentView
答案 1 :(得分:3)
检查您的活动是否正确!!
的setContentView(R.layout的 activity_weather_report 即可。);
答案 2 :(得分:1)
你把TextView放在哪个布局?我怀疑在这种情况下,你将TextView放在PlaceHolder片段布局中(而不是activity_weather_report.xml
布局)。如果是这样,将TextView放在activity_weather_report.xml
中将解决您的问题。
答案 3 :(得分:1)
问题只是id
确保您在布局TextView
文件中使用xml
的正确ID。
我有同样的问题,通过解决拼写错误解决了问题。
答案 4 :(得分:0)
它显示此异常,因为您的textview在onCeate方法时没有获取数据。 在onCreate方法中声明你的textview, 把yourtextview.setText(xyz)放到任何你得到“xyz”值的地方。 希望这会奏效。