我有一个非常简单的应用程序无法正确启动。应用程序应加载启动画面,然后加载主应用程序。出于某种原因,它现在无法正常工作 -
logcat的:
02-08 13:30:41.846: E/AndroidRuntime(275): Uncaught handler: thread main exiting due to uncaught exception
02-08 13:30:41.865: E/AndroidRuntime(275): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.KES.GApps/com.KES.GApps.Splashscreen}: java.lang.NullPointerException
02-08 13:30:41.865: E/AndroidRuntime(275): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2496)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.app.ActivityThread.access$2200(ActivityThread.java:119)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.os.Handler.dispatchMessage(Handler.java:99)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.os.Looper.loop(Looper.java:123)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.app.ActivityThread.main(ActivityThread.java:4363)
02-08 13:30:41.865: E/AndroidRuntime(275): at java.lang.reflect.Method.invokeNative(Native Method)
02-08 13:30:41.865: E/AndroidRuntime(275): at java.lang.reflect.Method.invoke(Method.java:521)
02-08 13:30:41.865: E/AndroidRuntime(275): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
02-08 13:30:41.865: E/AndroidRuntime(275): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
02-08 13:30:41.865: E/AndroidRuntime(275): at dalvik.system.NativeStart.main(Native Method)
02-08 13:30:41.865: E/AndroidRuntime(275): Caused by: java.lang.NullPointerException
02-08 13:30:41.865: E/AndroidRuntime(275): at android.view.ViewGroup.addViewInner(ViewGroup.java:1860)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.view.ViewGroup.addView(ViewGroup.java:1756)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.view.ViewGroup.addView(ViewGroup.java:1736)
02-08 13:30:41.865: E/AndroidRuntime(275): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:217)
02-08 13:30:41.865: E/AndroidRuntime(275): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:207)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.app.Activity.setContentView(Activity.java:1633)
02-08 13:30:41.865: E/AndroidRuntime(275): at com.KES.GApps.Splashscreen.onCreate(Splashscreen.java:13)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
02-08 13:30:41.865: E/AndroidRuntime(275): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2459)
02-08 13:30:41.865: E/AndroidRuntime(275): ... 11 more
02-08 13:30:41.884: I/dalvikvm(275): threadid=7: reacting to signal 3
02-08 13:30:41.884: E/dalvikvm(275): Unable to open stack trace file '/data/anr/traces.txt': Permission denied
启动画面的xml(welcome.xml):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/img1"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="200dp"
android:layout_gravity="fill_horizontal"
android:contentDescription="@string/crestinfo"
android:src="@drawable/logov2" />
<TextView
android:id="@+id/welcomescreen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:text="@string/welcomescreen"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#ffffff"
android:textStyle="bold" android:padding="5dp" android:textSize="15pt" />
</LinearLayout>
的java:
package com.KES.GApps;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
public class Splashscreen extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.welcome);
Thread splashThread = new Thread() {
@Override
public void run() {
try {
int waited = 0;
while (waited < 2000) {
sleep(100);
waited += 100;
}
} catch (InterruptedException e) {
// do nothing
} finally {
finish();
Intent i = new Intent();
i.setClassName("com.KES.GApps",
"com.KES.GApps.KingEdwardVIISchoolActivity");
startActivity(i);
}
}
};
splashThread.start();
}
}
清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.KES.GApps"
android:versionCode="6"
android:versionName="1.5" >
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name="KingEdwardVIISchool"
android:debuggable="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:launchMode="standard" >
<activity
android:name="KingEdwardVIISchoolActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name="Splashscreen"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
根据LogCat输出,问题出在您的welcome.xml
布局文件中。由于某种原因,它被错误地充气。
尝试删除android:textAppearance="?android:attr/textAppearanceLarge"
属性和 ENSURE 您在项目启动前已运行Clean..
命令。
确保 xml文件中的所有引用都有效(即logov2
,img1
)。我会暂时删除你的xml文件中的所有引用,并检查它是否有帮助。
答案 1 :(得分:0)
复制welcome.xml文件并将其保存到任何地方暂时,然后在删除文件后再次删除该文件,粘贴您复制的welcome.xml文件。然后再次运行。它一定会运行你的应用程序。< / p>
答案 2 :(得分:0)
我曾经遭遇过这个问题。然后我做的是我刚从我的id
复制了布局的R.java
并将其直接粘贴到setContentView()
。即,在id
- &gt; R.java
中,layout
欢迎R.layout.welcome
。然后我的应用成功运行,没有任何异常。因此我意识到这只是一个暂时的问题。重新启动我的日食后(有时你必须完全重新启动系统)我再次用{{1}}替换了id,它运行正常。
希望这会有所帮助...
答案 3 :(得分:-3)
您是否已将活动添加到清单中并添加了权限?
请添加清单,以便我可以推荐您更多信息?
您的崩溃可能是由于此权限被拒绝。 在manifest.xml中检查您的权限。