Normal activity jump to mapactivity error

Source: Internet
Author: User

When you click a control from a normal activity to jump to an inherited Mapactivity class mymapactivity, an error occurs.

Log information:

E/androidruntime (15631): FATAL exception:main
E/androidruntime (15631): java.lang.NoClassDefFoundError:xxx.xxx.MyMapActivity

Original related code:

<pre name= "code" class= "java" ><application        android:name= "Com.etnet.android.MyApplication"        android:icon= "@drawable/launcher"        android:label= "@string/app_name" >        <activity android:name=            " Xxx.xxx.CompanySiteActivity "/></application>
Intent Intent = new Intent (this,mymapactivity.class); startactivity (Intent);

Workaround:

Add one to the manifest file: <uses-library android:name= "Com.google.android.maps"/>

The relevant code after the change:

<application        android:name= "com.etnet.android.MyApplication"        android:icon= "@drawable/launcher"        Android:label= "@string/app_name" >        <uses-library android:name= "Com.google.android.maps"/>        < Activity            android:name= "xxx.xxx.CompanySiteActivity"/></application>
Reference from:

http://blog.csdn.net/cj_guangtou/article/details/6452803


Normal activity jumps to mapactivity error

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.