Android - 应用崩溃 "java.lang.ClassCastException"
Android - App crashing with "java.lang.ClassCastException"
我正在使用 tutorial provided by Google 在我的应用程序中实现 Analytics 但我可能做错了什么导致应用程序崩溃 java.lang.ClassCastException
这是Google提供的:
// Obtain the shared Tracker instance.
AnalyticsApplication application = (AnalyticsApplication) getApplication();
mTracker = application.getDefaultTracker();
这是我所做的更改,因为我使用的是 片段
// This is where I get the error
AnalyticsApplication application = (AnalyticsApplication) getContext().getApplicationContext();
mTracker = application.getDefaultTracker();
更新: 错误发生在这一行:
AnalyticsApplication application = (AnalyticsApplication) getContext().getApplicationContext();
这是我的LogCat
FATAL EXCEPTION: main
Process: com.incorp.labs.appname, PID: 14095
java.lang.ClassCastException: android.app.Application cannot be cast to com.incorp.labs.appname.Helper.AnalyticsTracker
at com.incorp.labs.appname.OneFragment.onCreateView(OneFragment.java:126)
更新 2:这是清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.incorp.labs.appname">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.vending.BILLING" />
<application
android:allowBackup="true"
android:icon="@mipmap/newlogops"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/MyMaterialTheme">
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name=".Splash"
android:screenOrientation="portrait" />
<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".OneFragment"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".TwoFragment"
android:screenOrientation="portrait" />
<activity
android:name=".Feedback"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".FourFragment"
android:screenOrientation="portrait" />
<activity
android:name=".SplashTimer"
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.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
<service android:name=".FirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<activity android:name=".AboutActivity"></activity>
</application>
只要改变这个:-
AnalyticsTracker application = (AnalyticsTracker) getContext().getApplicationContext();
对此:-
AnalyticsApplication application = (AnalyticsApplication) getContext().getApplicationContext();
这是我们中最好的人都会犯的明显错误之一!
我认为您正在尝试将上下文对象 (getApplicationContext()) 用作应用程序对象。
试试这个:编辑
AnalyticsApplication application = (AnalyticsApplication) getActivity().getApplication();
从您的片段中,您可以调用包含该片段的 activity。当您获得 activity 时,您可以像示例中那样使用 getApplication() 函数。
希望对您有所帮助。
编辑 2
如本回答所示: 来自 CommonsWare 用户。
Your AndroidManifest.xml file does not contain your custom Application
subclass, so Android is using the default one
(android.app.Application).
Add an android:name="auc.games2.Analytics.AnalyticsApplication"
attribute to your element.
除了实现 extends Application
class,您还需要告诉 Android 系统将哪个 class 用作应用程序 class。为此,请在清单中设置应用程序的名称 class:
<application
android:name="your.package.AnalyticsApplication"
我正在使用 tutorial provided by Google 在我的应用程序中实现 Analytics 但我可能做错了什么导致应用程序崩溃 java.lang.ClassCastException
这是Google提供的:
// Obtain the shared Tracker instance.
AnalyticsApplication application = (AnalyticsApplication) getApplication();
mTracker = application.getDefaultTracker();
这是我所做的更改,因为我使用的是 片段
// This is where I get the error
AnalyticsApplication application = (AnalyticsApplication) getContext().getApplicationContext();
mTracker = application.getDefaultTracker();
更新: 错误发生在这一行:
AnalyticsApplication application = (AnalyticsApplication) getContext().getApplicationContext();
这是我的LogCat
FATAL EXCEPTION: main
Process: com.incorp.labs.appname, PID: 14095
java.lang.ClassCastException: android.app.Application cannot be cast to com.incorp.labs.appname.Helper.AnalyticsTracker
at com.incorp.labs.appname.OneFragment.onCreateView(OneFragment.java:126)
更新 2:这是清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.incorp.labs.appname">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.vending.BILLING" />
<application
android:allowBackup="true"
android:icon="@mipmap/newlogops"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/MyMaterialTheme">
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name=".Splash"
android:screenOrientation="portrait" />
<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".OneFragment"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".TwoFragment"
android:screenOrientation="portrait" />
<activity
android:name=".Feedback"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".FourFragment"
android:screenOrientation="portrait" />
<activity
android:name=".SplashTimer"
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.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
<service android:name=".FirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<activity android:name=".AboutActivity"></activity>
</application>
只要改变这个:-
AnalyticsTracker application = (AnalyticsTracker) getContext().getApplicationContext();
对此:-
AnalyticsApplication application = (AnalyticsApplication) getContext().getApplicationContext();
这是我们中最好的人都会犯的明显错误之一!
我认为您正在尝试将上下文对象 (getApplicationContext()) 用作应用程序对象。
试试这个:编辑
AnalyticsApplication application = (AnalyticsApplication) getActivity().getApplication();
从您的片段中,您可以调用包含该片段的 activity。当您获得 activity 时,您可以像示例中那样使用 getApplication() 函数。
希望对您有所帮助。
编辑 2
如本回答所示:
Your AndroidManifest.xml file does not contain your custom Application subclass, so Android is using the default one (android.app.Application).
Add an android:name="auc.games2.Analytics.AnalyticsApplication" attribute to your element.
除了实现 extends Application
class,您还需要告诉 Android 系统将哪个 class 用作应用程序 class。为此,请在清单中设置应用程序的名称 class:
<application
android:name="your.package.AnalyticsApplication"