Why Worldwind globe is not showing in simulator?

99封情书 提交于 2019-12-13 05:13:03

问题


Recently I have been struggling with showing worldwind globe on simulator. I have found that on running the app in device it shows exact round globe as expected but on simulator it shows following output.

I am not able to understand why this is happening. Any workaround on this?

I have already put internet and external storage permission in AndroidMenfiest.xml.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.qq.worldwind.android"
  android:installLocation="auto" android:versionCode="2" android:versionName="0.2 Beta">
<supports-screens android:anyDensity="true" android:resizeable="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"></supports-screens>
 <uses-permission android:name="android.permission.INTERNET"></uses-permission>
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>


<application android:label="@string/app_name" android:icon="@drawable/qworld" android:debuggable="false">
    <activity android:name="WorldWindAndroid"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".layer.LayerManagerActivity"></activity>
    <activity android:name=".layer.AddLayerActivity"></activity>

</application>
<uses-sdk android:minSdkVersion="10" 
      android:targetSdkVersion="10" />
</manifest>

Any help will be appreciated.

来源:https://stackoverflow.com/questions/28735963/why-worldwind-globe-is-not-showing-in-simulator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!