2012-10-17 32 views
0

我遵循此tutorial’s步骤。我将我的项目命名为“HelloWorld3”而不是“HelloWorld”。我认真遵循所有的步骤,并在我的“HelloWorldActivity.java”我删除了已经存在(默认),这是因为以下几点:Hello World Map(ArcGIS) - Eclipse的模拟器无法正常运行ArcGIS应用程序

package com.esri.arcgis.android.samples.helloworld3; 

import android.app.Activity; 
import android.os.Bundle; 


import com.esri.android.map.MapView; 


public class HelloWorld3Activity extends Activity { 

    MapView mMapView ; 

    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     mMapView = new MapView(this); 

    } 

    @Override 
    protected void onDestroy() { 
     super.onDestroy(); 
} 
    @Override 
    protected void onPause() { 
     super.onPause(); 
     mMapView.pause(); 
} 
    @Override protected void onResume() { 
     super.onResume(); 
     mMapView.unpause(); 
    } 

} 

我改变了以前的代码,并把这个代码,而不是:

public class HelloWorldActivity extends Activity { 
    MapView map = null; 

    /** Called when the activity is first created. */ 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     // Retrieve the map and initial extent from XML layout 
     map = (MapView)findViewById(R.id.map); 
     // Add dynamic layer to MapView 
     map.addLayer(new ArcGISTiledMapServiceLayer("" + 
     "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer")); 

    } 

    protected void onPause() { 
     super.onPause(); 
     map.pause(); 
    } 

    protected void onResume() { 
     super.onResume(); 
     map.unpause(); 
    } 
} 

(我也跟着发生了什么在本教程中提到的,但是绝对我把它命名为“HelloWorld3Activity”)

然后,我的代码变成这个样子:

package com.esri.arcgis.android.samples.helloworld3; 

import android.app.Activity; 
import android.os.Bundle; 


import com.esri.android.map.MapView; 


public class HelloWorld3Activity extends Activity { 

    MapView map = null; 

    /** Called when the activity is first created. */ 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     // Retrieve the map and initial extent from XML layout 
     map = (MapView)findViewById(R.id.map); 
     // Add dynamic layer to MapView 
     map.addLayer(new ArcGISTiledMapServiceLayer("" + 
     "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer")); 

    } 

    protected void onPause() { 
     super.onPause(); 
     map.pause(); 
    } 

    protected void onResume() { 
     super.onResume(); 
     map.unpause(); 
    } 

} 

但是,“ArcGISTiledMapServiceLayer”下有一个红色下划线!

是什么问题?我不知道该怎么办!

enter image description here

我试图通过单击要解决的问题按Ctrl + Shift + O >>更新缺少的进口(希望它能够解决这个问题。 红色下划线消失了,我的代码变成这个样子:

package com.esri.arcgis.android.samples.helloworld3; 

import android.app.Activity; 
import android.os.Bundle; 

import com.esri.android.map.MapView; 
import com.esri.android.map.ags.ArcGISTiledMapServiceLayer; 


public class HelloWorld3Activity extends Activity { 

    MapView map = null; 

    /** Called when the activity is first created. */ 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     // Retrieve the map and initial extent from XML layout 
     map = (MapView)findViewById(R.id.map); 
     // Add dynamic layer to MapView 
     map.addLayer(new ArcGISTiledMapServiceLayer("" + 
     "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer")); 

    } 

    protected void onPause() { 
     super.onPause(); 
     map.pause(); 
    } 

    protected void onResume() { 
     super.onResume(); 
     map.unpause(); 
    } 

} 

之后,我试图运行它,我右键单击我的项目“HelloWorld3”,并点击运行方式> Android应用程序 模拟器开始,我发现我的应用程序的图标然而,当。我点击它,这个屏幕(或窗口)出现了。

enter image description here

什么问题? 请帮助我!

***这是我以前的相关的问题“Eclipse's Emulator (ArcGIS Android App)?

我不知道,但我认为这是logcat的:

10-17 12:38:19.820: I/dalvikvm(557): threadid=3: reacting to signal 3 
10-17 12:38:19.871: I/dalvikvm(557): Wrote stack traces to '/data/anr/traces.txt' 
10-17 12:38:19.911: D/dalvikvm(557): Trying to load lib /data/data/com.esri.arcgis.android.samples.helloworld3/lib/libGLMapCore.so 0x412a6680 
10-17 12:38:20.320: I/dalvikvm(557): threadid=3: reacting to signal 3 
10-17 12:38:20.371: I/dalvikvm(557): Wrote stack traces to '/data/anr/traces.txt' 
10-17 12:38:20.582: D/dalvikvm(557): Added shared lib /data/data/com.esri.arcgis.android.samples.helloworld3/lib/libGLMapCore.so 0x412a6680 
10-17 12:38:20.601: W/ApplicationContext(557): Unable to create external cache directory 
10-17 12:38:20.820: I/dalvikvm(557): threadid=3: reacting to signal 3 
10-17 12:38:20.851: I/dalvikvm(557): Wrote stack traces to '/data/anr/traces.txt' 
10-17 12:38:21.711: W/ApplicationContext(557): Unable to create external cache directory 
10-17 12:38:22.021: D/libEGL(557): Emulator without GPU support detected. Fallback to software renderer. 
10-17 12:38:22.021: D/libEGL(557): loaded /system/lib/egl/libGLES_android.so 
10-17 12:38:22.101: W/dalvikvm(557): threadid=11: thread exiting with uncaught exception (group=0x409c01f8) 
10-17 12:38:22.122: D/gralloc_goldfish(557): Emulator without GPU emulation detected. 
10-17 12:38:22.132: E/AndroidRuntime(557): FATAL EXCEPTION: GLThread 75 
10-17 12:38:22.132: E/AndroidRuntime(557): java.lang.IllegalArgumentException: No configs match configSpec 
10-17 12:38:22.132: E/AndroidRuntime(557): at com.esri.android.map.MapSurface$a.chooseConfig(Unknown Source) 
10-17 12:38:22.132: E/AndroidRuntime(557): at android.opengl.GLSurfaceView$EglHelper.start(GLSurfaceView.java:1009) 
10-17 12:38:22.132: E/AndroidRuntime(557): at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1362) 
10-17 12:38:22.132: E/AndroidRuntime(557): at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1216) 
10-17 12:38:29.820: D/dalvikvm(557): GC_CONCURRENT freed 320K, 5% free 9217K/9607K, paused 6ms+8ms 
10-17 12:38:31.741: I/Process(557): Sending signal. PID: 557 SIG: 9 
10-17 12:38:38.980: I/dalvikvm(585): threadid=3: reacting to signal 3 
10-17 12:38:39.121: I/dalvikvm(585): Wrote stack traces to '/data/anr/traces.txt' 
10-17 12:38:39.371: D/dalvikvm(585): Trying to load lib /data/data/com.esri.arcgis.android.samples.helloworld3/lib/libGLMapCore.so 0x4129e4c8 
10-17 12:38:39.490: I/dalvikvm(585): threadid=3: reacting to signal 3 
10-17 12:38:39.532: I/dalvikvm(585): Wrote stack traces to '/data/anr/traces.txt' 
10-17 12:38:39.892: D/dalvikvm(585): Added shared lib /data/data/com.esri.arcgis.android.samples.helloworld3/lib/libGLMapCore.so 0x4129e4c8 
10-17 12:38:39.900: W/ApplicationContext(585): Unable to create external cache directory 
10-17 12:38:40.001: I/dalvikvm(585): threadid=3: reacting to signal 3 
10-17 12:38:40.033: I/dalvikvm(585): Wrote stack traces to '/data/anr/traces.txt' 
10-17 12:38:40.501: I/dalvikvm(585): threadid=3: reacting to signal 3 
10-17 12:38:40.530: W/ApplicationContext(585): Unable to create external cache directory 
10-17 12:38:40.562: I/dalvikvm(585): Wrote stack traces to '/data/anr/traces.txt' 
10-17 12:38:40.780: D/libEGL(585): Emulator without GPU support detected. Fallback to software renderer. 
10-17 12:38:40.780: D/libEGL(585): loaded /system/lib/egl/libGLES_android.so 
10-17 12:38:40.911: D/gralloc_goldfish(585): Emulator without GPU emulation detected. 
10-17 12:38:40.921: W/dalvikvm(585): threadid=11: thread exiting with uncaught exception (group=0x409c01f8) 
10-17 12:38:40.971: E/AndroidRuntime(585): FATAL EXCEPTION: GLThread 78 
10-17 12:38:40.971: E/AndroidRuntime(585): java.lang.IllegalArgumentException: No configs match configSpec 
10-17 12:38:40.971: E/AndroidRuntime(585): at com.esri.android.map.MapSurface$a.chooseConfig(Unknown Source) 
10-17 12:38:40.971: E/AndroidRuntime(585): at android.opengl.GLSurfaceView$EglHelper.start(GLSurfaceView.java:1009) 
10-17 12:38:40.971: E/AndroidRuntime(585): at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1362) 
10-17 12:38:40.971: E/AndroidRuntime(585): at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1216) 
10-17 12:38:41.011: I/dalvikvm(585): threadid=3: reacting to signal 3 
10-17 12:38:41.041: I/dalvikvm(585): Wrote stack traces to '/data/anr/traces.txt' 
10-17 12:38:42.511: D/dalvikvm(585): GC_CONCURRENT freed 306K, 4% free 9231K/9607K, paused 20ms+123ms 
10-17 12:38:54.530: I/Process(585): Sending signal. PID: 585 SIG: 9 
+0

请张贴崩溃的Logcat进一步调查。 –

回答

2

当为Android在ArcGIS API最初发布,由于缺乏OpenGL ES 2.0支持,仿真器不支持它。不过这已经改变了。看看this。您可能需要对目标环境进行一些更改/安装一些额外的软件包。

相关问题