4

我关注诺基亚 Here Map 集成的教程链接。我得到这样的输出和错误

java.lang.IllegalAccessError:预验证类中的类引用解析为意外实现

在此处输入图像描述

我的

清单.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): 找不到文件变体/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): 找不到文件变体/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:带纹理视图(1266):TextureView 或子类只能在启用硬件加速的情况下使用。02-26 06:34:10.459:I/Choreographer(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: I/Choreographer(1266): 跳过 34 帧!应用程序可能在其主线程上做了太多工作。02-26 06:35:00.068: I/Choreographer(1266): 跳过 35 帧!应用程序可能在其主线程上做了太多工作。02-26 06:35:11.672:I/Choreographer(1266):跳过 56 帧!

4

4 回答 4

5

嗨朋友最后我发现错误,错误在模拟器中,您必须使用此配置创建模拟器在此处输入图像描述

之后在库中添加两个 jar

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

在此处输入图像描述

并得到这样的输出

在此处输入图像描述

于 2014-02-26T07:03:25.927 回答
1

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

对于错误

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

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

在此处输入图像描述

于 2014-02-26T06:23:04.837 回答
1

你的minSdkVersion is 8但从官方教程他们告诉设置minSdkVersion to 11看到第 6 点如果你想访问那个地图android-2.3 api level 10那么你必须使用支持库

于 2014-02-26T06:34:30.883 回答
0

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

于 2014-02-26T07:26:25.633 回答