【问题标题】:ClassCastException that shouldn't happen不应该发生的 ClassCastException
【发布时间】:2012-03-03 23:20:38
【问题描述】:

我得到了一个不应发生的 ClassCastException。 代码如下:

TwitterApplication ta = (TwitterApplication)getApplication();
    OAuthProvider p = ta.getProvider();

如你所见,我试图从应用程序中投射 TwitterApplication。

public class TwitterApplication extends Application {

private Twitter twitter;

public Twitter getTwitter(){
    return this.twitter;
}

public void setTwitter(Twitter t){
    this.twitter = t;
}

private OAuthProvider provider;
private CommonsHttpOAuthConsumer consumer;

public void setProvider(OAuthProvider oap){
    this.provider = oap;
}

public OAuthProvider getProvider(){
    return this.provider;
}

public void setConsumer(CommonsHttpOAuthConsumer c){
    this.consumer = c;
}

public CommonsHttpOAuthConsumer getConsumer(){
    return this.consumer;
}

正如您在此处看到的,它扩展了应用程序。

我的施法知识有问题吗? 为什么我会收到此错误? 谢谢

编辑: 完整的堆栈跟踪:

03-03 15:45:09.275: ERROR/AndroidRuntime(3192): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.laytproducts.IN/com.laytproducts.IN.TwitterUpdate}: java.lang.ClassCastException: android.app.Application
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1696)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1716)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.app.ActivityThread.access$1500(ActivityThread.java:124)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:968)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.os.Handler.dispatchMessage(Handler.java:99)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.os.Looper.loop(Looper.java:130)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.app.ActivityThread.main(ActivityThread.java:3806)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at java.lang.reflect.Method.invokeNative(Native Method)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at java.lang.reflect.Method.invoke(Method.java:507)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at dalvik.system.NativeStart.main(Native Method)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192): Caused by: java.lang.ClassCastException: android.app.Application
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at com.laytproducts.IN.TwitterUpdate.getConsumerProvider(TwitterUpdate.java:148)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at com.laytproducts.IN.TwitterUpdate.onCreate(TwitterUpdate.java:117)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1660)
03-03 15:45:09.275: ERROR/AndroidRuntime(3192):     ... 11 more

清单:

 <uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"></uses-permission>

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".MainAct"
              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=".Main" />

    <activity android:name=".FBUpdate">
        <intent-filter>
            <action android:name="com.laytproducts.IN.WidgetAct.ACTION_WIDGET_FB" />
        </intent-filter>
    </activity>
    <activity android:name=".TwitterUpdate">
        <intent-filter>
            <action android:name="com.laytproducts.IN.WidgetAct.ACTION_WIDGET_TWITTER" />
        </intent-filter>
    </activity>

    <application android:name="TwitterApplication" />

    <receiver android:name=".WidgetAct">
        <intent-filter>
            <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
        </intent-filter>
        <meta-data android:name="android.appwidget.provider"
            android:resource="@xml/winfo"/>
    </receiver>
</application>

【问题讨论】:

  • getApplication 返回什么?
  • getApplication 返回一个应用程序。我会在编辑中完整发布。

标签: java android class classcastexception


【解决方案1】:

如果 getApplication() 返回的具体类实际上不是 TwitterApplication 对象,则会出现错误。

您是否修改了您的 Android 清单文件以使其使用这个 TwitterApplication 类?如果没有,您将需要这样做。仅仅扩展 Application 是不够的 - 您必须告诉 Android 使用 TwitterApplication 具体类。

【讨论】:

  • 我该怎么做?我以前从未使用过应用程序。
  • 没关系。发现。不得不把 东西放进去。不要做一个新的。谢谢老哥
【解决方案2】:

在您的清单文件中,确保您有:

<application android:name="TwitterApplication">

【讨论】:

  • 没用。您可以查看我的编辑以查看我的完整清单(或大部分内容)。
  • 当然,你需要编辑现有的application标签,而不是新建一个。
  • 你在我发表评论后不久就发现了这一点 XD
猜你喜欢
  • 2012-07-02
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2016-10-31
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多