0

Android docsAndroid Google Play Servicesから統合しようとしています。すべての手順が機能し、エラーなしでコンパイルされます。スプラッシュ画面での実行時に、以下のエラーが発生します。

05-30 21:08:36.115: E/AndroidRuntime(7137): FATAL EXCEPTION: Thread-153
05-30 21:08:36.115: E/AndroidRuntime(7137): java.lang.NoClassDefFoundError: matt.lyons.bibletrivia.lite.MainMenu
05-30 21:08:36.115: E/AndroidRuntime(7137):     at matt.lyons.bibletrivia.lite.SplashScreen$IntentLauncher.run(SplashScreen.java:46)

以下は「SplashScreen.java:46」へのコードです。

Intent intent = new Intent(SplashScreen.this, MainMenu.class);  //Line 46
startActivity(intent);

私はちょうど私の開始行をこれから変更しましたMainMenu:

public class MainMenu extends Activity {

これに:

public class MainMenu extends BaseGameActivity {

そして今、ClassNotFoundException を取得しています。このエラーが表示されるのはなぜですか? MainMenuクラスは確かにあります。リクエストに応じて、追加のコードを提供できます。

Android マニフェスト

<manifest 
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="matt.lyons.bibletrivia.lite"
    android:versionCode="5"
    android:versionName="1.2.1" >

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

    <application
        android:icon="@drawable/icon_blue_bg"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".SplashScreen"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action
                    android:name="android.intent.action.MAIN" />
                <category
                    android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity 
            android:name="com.google.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
        <activity
            android:label="@string/app_name"
            android:name=".About"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".Categories"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".Question"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".Quiz"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".QuestionView"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".Results"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".Highscores"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".DatabaseHelper"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".ComingSoon"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".MainMenu"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".MyApplication"
            android:screenOrientation="portrait" />
        <activity
            android:label="@string/app_name"
            android:name=".BibleStudy"
            android:screenOrientation="portrait" />
    </application>

    <uses-permission 
        android:name="android.permission.INTERNET" />
    <uses-permission 
        android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission 
        android:name="com.android.vending.BILLING" />
</manifest>
4

3 に答える 3

0

同じ問題がありました。

この質問への答えは私にとってそれを解決しました。 ADT および Android SDK ツールを最新のバージョン 22 に更新した後、Class not found エラーが発生する

于 2013-06-04T19:53:31.233 に答える
0

次の場所に新しいアクティビティを作成します。

File->New->Other->Android Activity->Blanc Activity

次に、Hierarchical Parent選択でBaseGameActivity...

その後、作成したアクティビティに MainActivity のコードをコピーします...

そうすれば、エラーは発生しないと思います。

于 2013-06-03T14:05:05.680 に答える
0

マニフェストに<activity android:name=".MainMenu" />内部タグを追加します。application

于 2013-06-03T13:50:33.730 に答える