문제

I was initially trying to add a splash page to my app, and followed a tutorial on how to do so. However, now every time I load my app, it does to a white screen for a few seconds before saying "Unfortunately, [App] has stopped."

I was unable to find a way to copy LogCat, so here's an image of the errors which appear:

enter image description here

Also, here's my Manifest XML:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.bipbapapps.leagueclickerapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />


    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity
            android:name=".Splash"
            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=".MainClass"
            android:label="@string/app_name">
                <intent-filter>
                    <action android:name="com.bipbapapps.leagueclicker.CLICKER" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

    </application>

</manifest>

Deleting the splash Java and activity from the manifest does nothing to help now (and when I deleted it, I did revert MainClass to .LAUNCHER .

Can anyone make sense of the list, and/or help me run my app again?

도움이 되었습니까?

해결책

From the logs, I found that you should

Call the requestFeature before setContentView();

다른 팁

The error says it you are calling setContentView() before requestFeature(). Don't do it.

LogCat should show you the problem. Click on all the error lines in the LogCat until you will be redirected to the problem.

I, myself, found that your problem could be at: Splash.java, line 19

Go check it out, hope it helps!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top