运行的时候出现:

java.lang.NoClassDefFoundError: android.util.ArrayMap


http://stackoverflow.com/questions/24574323/crash-with-android-4-1-with-arraymap
找到的答案:
ArrayMap was introduced in Api level 19, but it was also released in the compatibility library v4, so it would be enough to change the import to android.support.v4.util.ArrayMap instead of android.util.ArrayMap


android.support.v4.util.ArrayMap 替换 android.util.ArrayMap

相关文章:

  • 2022-12-23
  • 2021-09-16
  • 2021-10-08
  • 2021-07-10
  • 2022-03-02
  • 2021-06-11
  • 2022-02-15
猜你喜欢
  • 2022-12-23
  • 2021-06-24
  • 2021-09-11
  • 2022-01-29
  • 2022-12-23
  • 2022-12-23
  • 2021-04-24
相关资源
相似解决方案