Note that there are some explanatory texts on larger screens.

plurals
  1. POgoogle map problem in android
    primarykey
    data
    text
    <p>hi i made google map application but when i call the class in which i made th MapActivity following error are generated</p> <pre><code>AndroidRuntime FATAL EXCEPTION: main ERROR AndroidRuntime java.lang.NoClassDefFoundError: org.me.bdn.MapDemo 936 ERROR AndroidRuntime at org.me.bdn.listdata$1.onItemClick(listdata.java:53) 936 ERROR AndroidRuntime at android.widget.AdapterView.performItemClick(AdapterView.java:284) 936 ERROR AndroidRuntime at android.widget.ListView.performItemClick(ListView.java:3382) 14:02:25.856 936 ERROR AndroidRuntime at android.widget.AbsListView$PerformClick.run(AbsListView.java:1696) 14:02:25.856 936 ERROR AndroidRuntime at android.os.Handler.handleCallback(Handler.java:587) 14:02:25.856 936 ERROR AndroidRuntime at android.os.Handler.dispatchMessage(Handler.java:92) 14:02:25.856 936 ERROR AndroidRuntime at android.os.Looper.loop(Looper.java:123) 14:02:25.856 936 ERROR AndroidRuntime at android.app.ActivityThread.main(ActivityThread.java:4627) 14:02:25.856 936 ERROR AndroidRuntime at java.lang.reflect.Method.invokeNative(Native Method) 14:02:25.856 936 ERROR AndroidRuntime at java.lang.reflect.Method.invoke(Method.java:521) 14:02:25.856 936 ERROR AndroidRuntime at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868) 14:02:25.856 936 ERROR AndroidRuntime at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626) 14:02:25.856 936 ERROR AndroidRuntime at dalvik.system.NativeStart.main(Native Method) my MapActivity class is given here import android.os.Bundle; import com.google.android.maps.MapActivity; import com.google.android.maps.MapView; /** * * @author bhaveshn */ public class MapDemo extends MapActivity{ @Override protected boolean isRouteDisplayed() { return false; } @Override protected void onCreate(Bundle vi) { super.onCreate(vi); setContentView(R.layout.map); MapView mapView = (MapView) findViewById(R.id.mapview); mapView.setBuiltInZoomControls(true); } } </code></pre> <p>i have already added the this file in menifest file</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.me.bdn"&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;application android:icon="@drawable/icon" &gt; &lt;activity android:name=".MapDemo" android:label="Map"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN"/&gt; &lt;category android:name="android.intent.category.LAUNCHER"/&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;uses-library android:name="com.google.android.maps" /&gt; &lt;/application&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload