Download expansion files on tablet

前端 未结 7 2004
清酒与你
清酒与你 2021-01-28 02:13

I am making an dictionary for android phones and tablets. I have committed the file on my developer account, and i works like a charm on phone. When i am trying to run the exact

相关标签:
7条回答
  • 2021-01-28 03:12

    I had problem with notifications on tablet (Galaxy Tab with Android 3). NotificationCompat utility with android-support-v4.jar revision 10 throws this error. It is probably bug in support library.

    java.lang.NoSuchMethodError: android.app.Notification$Builder.setProgress
    at android.support.v4.app.NotificationCompatIceCreamSandwich.add(NotificationCompatIceCreamSandwich.java:31)
    at android.support.v4.app.NotificationCompat$NotificationCompatImplIceCreamSandwich.build(NotificationCompat.java:104)
    at android.support.v4.app.NotificationCompat$Builder.build(NotificationCompat.java:558)
    

    I solved this problem using this repaired support library rev. 10: http://code.google.com/p/yuku-android-util/source/browse/ActionBarSherlock4/libs/android-support-v4.jar. With this JAR, it works fine for me.

    Thanks to yukuku: http://code.google.com/p/android/issues/detail?id=36359

    EDIT: New Support Library, revision 11 (November 2012) fix this problem.

    0 讨论(0)
提交回复
热议问题