为什么“HereMap”在Android中显示空白屏幕?

时间:2014-02-26 05:37:40

标签: android here-api nokiax

我按照本教程link了解诺基亚的Here Map集成。我得到了这样的输出和错误

  

java.lang.IllegalAccessError:已解析的预验证类中的类ref   意外实施

enter image description here

我的

  

的Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.heremap"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

<uses-library android:name="com.here.android" android:required="true" />
        <activity
            android:name="com.example.heremap.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

        </activity>
        <meta-data android:name="com.here.android.maps.appid"
android:value="XXXXXX"/>
<meta-data android:name="com.here.android.maps.apptoken"
android:value="XXXXXX"/>
    </application>

</manifest>
  

MainActivity.java

    package com.example.heremap;

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

import com.here.android.mapping.FragmentInitListener;
import com.here.android.mapping.InitError;
import com.here.android.mapping.Map;
import com.here.android.mapping.MapAnimation;
import com.here.android.mapping.MapFactory;
import com.here.android.mapping.MapFragment;

public class MainActivity extends Activity {

    // map embedded in the map fragment
    private Map map = null;

    // map fragment embedded in this activity
    private MapFragment mapFragment = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Search for the map fragment to finish setup by calling init().
        mapFragment = (MapFragment) getFragmentManager().findFragmentById(
                R.id.mapfragment);
        mapFragment.init(new FragmentInitListener() {
            @Override
            public void onFragmentInitializationCompleted(InitError error) {
                if (error == InitError.NONE) {
                    // retrieve a reference of the map from the map fragment
                    map = mapFragment.getMap();
                    // Set the map center coordinate to the Vancouver region
                    map.setCenter(MapFactory.createGeoCoordinate(49.196261,
                            -123.004773, 0.0), MapAnimation.NONE);
                    // Set the map zoom level to the average between min and max
                    // (with no animation)
                    map.setZoomLevel((map.getMaxZoomLevel() +
                            map.getMinZoomLevel()) / 2);
                } else {
                    System.out.println("ERROR: Cannot initialize Map Fragment");
                }
            }
        });
    }
}
  

activity_main.xml中

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />
<fragment
    class="com.here.android.mapping.MapFragment"
    android:id="@+id/mapfragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
</LinearLayout>
  

错误日志:

 02-26 06:06:47.192: E/AndroidRuntime(808): FATAL EXCEPTION: main 02-26
 06:06:47.192: E/AndroidRuntime(808): java.lang.IllegalAccessError:
 Class ref in pre-verified class resolved to unexpected implementation
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 com.example.heremap.MainActivity.onCreate(MainActivity.java:27) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 android.app.Activity.performCreate(Activity.java:5180) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1094)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2031)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2092)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 android.app.ActivityThread.access$600(ActivityThread.java:133) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 android.app.ActivityThread$H.handleMessage(ActivityThread.java:1203)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 android.os.Handler.dispatchMessage(Handler.java:99) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 android.os.Looper.loop(Looper.java:137) 02-26 06:06:47.192:
 E/AndroidRuntime(808):     at
 android.app.ActivityThread.main(ActivityThread.java:4807) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 java.lang.reflect.Method.invokeNative(Native Method) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 java.lang.reflect.Method.invoke(Method.java:511) 02-26 06:06:47.192:
 E/AndroidRuntime(808):     at
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:792)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:559) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 dalvik.system.NativeStart.main(Native Method)

订单中删除jar并导出文件夹后获取新错误并更新日志结果

  

02-26 06:34:09.810:E / Trace(1266):错误打开跟踪文件:没有这样的   文件或目录(2)02-26 06:34:09.859:D / BYD_Flex(1266):getValue()   name = @ NOKIAFLEX @ packageNeedData 02-26 06:34:09.859:   D / BYD_Flex(1266):找不到文件variant / cfg / flex.xml 02-26   06:34:09.870:D / BYD_Flex(1266):getValue()readFlexFromXml =   TypedValue {t = 0x0 / d = 0x0} 02-26 06:34:09.870:D / BYD_Flex(1266):   getValue()name = @ NOKIAFLEX @ setDataUsageReminder 02-26 06:34:09.870:   D / BYD_Flex(1266):找不到文件variant / cfg / flex.xml 02-26   06:34:09.870:D / BYD_Flex(1266):getValue()readFlexFromXml =   TypedValue {t = 0x0 / d = 0x0} 02-26 06:34:10.249:I / Choreographer(1266):   跳过44帧!应用程序可能在其上做了太多工作   主线程。 02-26 06:34:10.249:W / TextureView(1266):一个TextureView或   子类只能在启用硬件加速的情况下使用。 02-26   06:34:10.459:我/编舞(1266):跳过53帧!该   应用程序可能在其主线程上做了太多工作。 02-26   06:34:11.679:I / Choreographer(1266):跳过314帧!该   应用程序可能在其主线程上做了太多工作。 02-26   06:34:30.191:I / Choreographer(1266):跳过38帧!该   应用程序可能在其主线程上做了太多工作。 02-26   06:34:32.183:我/编舞(1266):跳过34帧!该   应用程序可能在其主线程上做了太多工作。 02-26   06:35:00.068:I / Choreographer(1266):跳过35帧!该   应用程序可能在其主线程上做了太多工作。 02-26   06:35:11.672:我/编舞(1266):跳过56帧!该   应用程序可能在其主线程上做了太多工作。

4 个答案:

答案 0 :(得分:5)

朋友们,我发现错误,错误是在模拟器中,您必须使用此配置创建模拟器enter image description here

之后在库中添加两个jar

  • com.here.android.sdk.jar
  • com.google.android.maps.sdk.jar

enter image description here

并获得输出,就像这样

enter image description here

答案 1 :(得分:1)

由于第三方库引用添加了两次,您收到此错误。您已在项目的构建路径中添加了应用程序路径。所以库引用自动添加到项目“。删除测试项目中属性 - > android下的任何库引用。从Eclipse中Project的Java构建路径下的”Order and Export“选项卡中取消选中jar。但是要将它们添加到”库“选项卡。单击确定,清理项目并立即构建。它可以工作。

错误

       error opening trace file: No such file or directory (2)

重新创建Android虚拟设备,确保输入SD卡大小的值(我使用了200 MiB)。

enter image description here

答案 2 :(得分:1)

您的minSdkVersion is 8Official tutorial来自minSdkVersion to 11他们要设置android-2.3 api level 10,如果您想在{{1}}中访问该地图,请参阅第6点你必须使用Support library

答案 3 :(得分:0)

一般情况下,当地图控件初始化失败时,你会得到黑控制,所以你可以检查初始化完成功能,看看错误代码是否表明出了什么问题,通常它确实说明了确切原因。