- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Android 开发新手,我只是尝试创建一个简单的应用程序,该应用程序获取输入并根据输入在新 Activity 中返回结果。调用新 Activity 后,我收到 NullPointerException。帮助将不胜感激!提前致谢。
日志猫:
11-29 19:03:47.369: D/libEGL(26311): loaded /system/lib/egl/libEGL_adreno200.so
11-29 19:03:47.369: D/libEGL(26311): loaded /system/lib/egl/libGLESv1_CM_adreno200.so
11-29 19:03:47.369: D/libEGL(26311): loaded /system/lib/egl/libGLESv2_adreno200.so
11-29 19:03:47.369: I/Adreno200-EGL(26311): <qeglDrvAPI_eglInitialize:265>: EGL 1.4
QUALCOMM Build: Iabe52cfaeae4c5fab1acacfe6f056ba15fa93274
11-29 19:03:47.409: D/OpenGLRenderer(26311): Enabling debug mode 0
11-29 19:03:48.430: E/SpannableStringBuilder(26311): SPAN_EXCLUSIVE_EXCLUSIVE spans
cannot have a zero length
11-29 19:03:48.430: E/SpannableStringBuilder(26311): SPAN_EXCLUSIVE_EXCLUSIVE spans
cannot have a zero length
11-29 19:03:48.450: E/SpannableStringBuilder(26311): SPAN_EXCLUSIVE_EXCLUSIVE spans
cannot have a zero length
11-29 19:03:48.450: E/SpannableStringBuilder(26311): SPAN_EXCLUSIVE_EXCLUSIVE spans
cannot have a zero length
11-29 19:03:51.693: W/IInputConnectionWrapper(26311): beginBatchEdit on inactive
InputConnection
11-29 19:03:51.693: W/IInputConnectionWrapper(26311): endBatchEdit on inactive
InputConnection
11-29 19:03:54.606: D/AndroidRuntime(26311): Shutting down VM
11-29 19:03:54.606: W/dalvikvm(26311): threadid=1: thread exiting with uncaught
exception (group=0x416697c0)
11-29 19:03:54.606: E/AndroidRuntime(26311): FATAL EXCEPTION: main
11-29 19:03:54.606: E/AndroidRuntime(26311): java.lang.RuntimeException: Unable to
start activity ComponentInfo{com.example.newbloodexam/
com.example.newbloodexam.DisplayResultsActivity}: java.lang.NullPointerException
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2212)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2262)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.app.ActivityThread.access$600(ActivityThread.java:142)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.app.ActivityThread$H.handleMessage(ActivityThread.java:1257)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.os.Handler.dispatchMessage(Handler.java:99)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.os.Looper.loop(Looper.java:137)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.app.ActivityThread.main(ActivityThread.java:5104)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
java.lang.reflect.Method.invokeNative(Native Method)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
java.lang.reflect.Method.invoke(Method.java:525)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
dalvik.system.NativeStart.main(Native Method)
11-29 19:03:54.606: E/AndroidRuntime(26311): Caused by: java.lang.NullPointerException
11-29 19:03:54.606: E/AndroidRuntime(26311): at
com.example.newbloodexam.DisplayResultsActivity.onCreate
(DisplayResultsActivity.java:36)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.app.Activity.performCreate(Activity.java:5133)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
11-29 19:03:54.606: E/AndroidRuntime(26311): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2176)
11-29 19:03:54.606: E/AndroidRuntime(26311): ... 11 more
11-29 19:03:56.478: I/Process(26311): Sending signal. PID: 26311 SIG: 9
主要 Activity :
package com.example.newbloodexam;
import com.example.newbloodexam.DisplayResultsActivity;
import com.example.newbloodexam.R;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
public void CalcResult(View view)
{
String NameExtra = "NameStr"; String AgeExtra = "AgeInt"; String TestExtra = "TestInt";
Intent intent = new Intent(this, DisplayResultsActivity.class);
EditText NameEdit = (EditText) findViewById(R.id.EnterName);
EditText AgeEdit = (EditText) findViewById(R.id.EnterAge);
EditText TestEdit = (EditText) findViewById(R.id.EnterTest);
String NameStr = NameEdit.getText().toString();
int AgeInt = Integer.parseInt(AgeEdit.getText().toString());
int TestInt = Integer.parseInt(TestEdit.getText().toString());
Bundle ExtraBundle = new Bundle();
ExtraBundle.putString(NameExtra, NameStr);
ExtraBundle.putInt(AgeExtra, AgeInt);
ExtraBundle.putInt(TestExtra, TestInt);
intent.putExtras(ExtraBundle);
startActivity(intent);
}
}
显示结果 Activity :
package com.example.newbloodexam;
import android.os.Build;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
import android.support.v4.app.NavUtils;
public class DisplayResultsActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.activity_display_results);
// Show the Up button in the action bar.
setupActionBar();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
// Show the Up button in the action bar.
getActionBar().setDisplayHomeAsUpEnabled(true);
}
Intent intent = getIntent();
Bundle Extra = intent.getExtras();
String Name = Extra.getString("NameStr");
int Age = Extra.getInt("AgeInt");
int Test = Extra.getInt("TestInt");
String Result = Calculate(Name,Age,Test);
//TextView textView = new TextView(this);
//textView.setTextSize(40);
//textView.setText(Result);
//setContentView(textView);
TextView ResultVal = (TextView) findViewById(R.id.textView3);
ResultVal.setText(Result);
setContentView(ResultVal);
}
/**
* Set up the {@link android.app.ActionBar}.
*/
private void setupActionBar() {
getActionBar().setDisplayHomeAsUpEnabled(true);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.display_results, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
// This ID represents the Home or Up button. In the case of this
// activity, the Up button is shown. Use NavUtils to allow users
// to navigate up one level in the application structure. For
// more details, see the Navigation pattern on Android Design:
//
// http://developer.android.com/design/patterns/navigation.html#up-
vs-back
//
NavUtils.navigateUpFromSameTask(this);
return true;
}
return super.onOptionsItemSelected(item);
}
public String Calculate(String getName, int getAge, int getTest)
{
String ResultText = "";
if(getAge < 18)
{
if(getTest > 0 && getTest <= 100)
{
ResultText = "Your ok.";
}
else if(getTest > 100)
{
ResultText = "wtf?";
}
}
else if(getAge < 18 && getAge <= 50)
{
if(getTest > 0 && getTest >= 500)
{
ResultText = "Your a healthy one";
}
else if(getTest > 500)
{
ResultText = "Your gonna die.";
}
}
return ResultText;
}
}
AndroidManifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.newbloodexam"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="13"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.newbloodexam.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.newbloodexam.DisplayResultsActivity"
android:label="@string/title_activity_display_results" >
</activity>
</application>
</manifest>
最佳答案
看来问题出在:
TextView ResultVal = (TextView) findViewById(R.id.textView3);
ResultVal.setText(Result);
setContentView(ResultVal);
ResultVal
为空。
您不能在 setContentView
之前使用 findViewById
关于java.lang.RuntimeException : Unable to start activity ComponentInfo{. ..} : java. lang.NullPointerExceptionAndroid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20290776/
我正在尝试为 Android 设置 JUnit 测试并且我有 list 等设置但我不断收到此错误: java.lang.RuntimeException: Unable to instantiate
我的问题是当我运行应用程序并单击注册按钮时突然显示弹出窗口:“强制关闭” 这是我的代码: Main.java package com.example.server; import java.util.
当我运行我的 Activity registeration.java 或 login.java 时,它将 Intent 中的用户名传递给名为 profile.java 的新 Activity > 关于
这个问题已经有答案了: java.lang.RuntimeException: Unable to instantiate activity ComponentInfo (47 个回答) 已关闭 8
以下 Android Studio 1.5 MainActivity.java 代码会在标题中生成错误,并带有 You need to use a Theme.AppCompat theme publ
尝试从文本消息 URL 在 Android 上启动 Xamarin 表单应用程序时,我收到此错误。我一直在遵循 THIS 中提到的步骤文章。 这里是我 AppManifest.xml 中的应用程序节点
我在我的应用程序中创建了一个 map View ,但出现了这个错误: 09-07 21:24:08.886: INFO/ActivityManager(243): Starting: Intent {
我的应用程序运行正常,但当应用程序进入后台时,它在应该恢复时崩溃了。正如您在源代码中看到的那样,我记录了 onStart、onStop 等事件。 在我的日志中,当我启动应用程序时,我可以看到 onSt
我正在处理从其他人那里导入的 Android 项目。我已经对所有依赖项进行排序,项目中没有错误,但是当我尝试启动它时,我得到: 04-08 16:49:41.761: E/AndroidRuntime
在我的应用程序中,当我选择按钮时,它会将我指向 mapView 类,它会显示用户的当前位置。 但是,它抛出 java.lang.RuntimeException: Unable to instanti
我在开发 Android 应用程序时遇到问题。我首先对我的错误进行了研究,然后发现还有其他人和我有同样的问题。我阅读了所有评论并尝试了所有方法,但我仍然遇到同样的错误。 这里是我的错误 05-29 1
我有一个 Google 云消息的接收器,它已在 AndroidManifest.xml 中注册:
我正在开发一个应用程序,最低版本为 Froyo,目标版本为 Gingerbread。因此, list 显示: 我有一个模拟器和一个带有 Gingerbread 的 Nexus One,应用程序部署和
我正在尝试将其作为我的主要 Activity 以打开另一个 Activity (ListAtivity)。但是,当我单击按钮时,应用程序崩溃并出现以下异常: 01-26 17:12:58.341: E
我正在制作一个可以搜索表“员工”并返回结果的应用程序。我正在使用 searchdialog 进行搜索。但是我在搜索对话框上按下搜索按钮时得到了 FC。请帮帮我。 代码: public class Si
我是 Android 开发的新手,所以我确信这会变成我错过的愚蠢的事情,但我有两个 Activity :StartScreen 和 Map。 StartScreen 只是简单的文本和一个按钮,然后应该
我修改了来自 http://www.elektor.com/magazines/2012/march/android-switch-interface.2084156.lynkx 的示例蓝牙通信应用程
我创建了一个应用程序,该应用程序应该从我的Thingspeak channel 接收数据。 首先,我只是使用了webview小部件,但我想走得更远,并使用Thingspeak Java api自己处理
可以找到 list 文件here . 可以找到DeviceAdminReceiver类here agent_device_xml 定义如下:
01-05 18:35:42.754: E/AndroidRuntime(5814): java.lang.RuntimeException: 无法实例化 Activity ComponentInfo
我是一名优秀的程序员,十分优秀!