I'm using Eclipse to make Android plugins for Unity3d.
I have an Activity group and in OnCreate I start my UnityPlayerActivity:
setContentView(R.layout.main);
m_Handler = new Handler();
lam = getLocalActivityManager();
//The Unity Scene
{
Intent intent = new Intent(this, GMapsTestUnityActivity.class);
Window window = lam.startActivity("10001", intent);
FrameLayout l1 = (FrameLayout) findViewById(R.id.l1);
l1.addView(window.getDecorView());
m_MapActivity = (GMapsTestUnityActivity) lam.getActivity("10001");
}
This works fine. I'm wanting to use the Google Maps API so I've added a class for that. I initialize this class in a function 'StartMapActivity()' which I call programmaticly in unity3d whenever I want to display the map.
public void StartMapActivity()
{
m_Handler.post(new Runnable(){
public void run(){
Log.d("Called StartMapActivity", "Called StartMapActivity");
Intent intent = new Intent(getBaseContext(), MapClass.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Window window = lam.startActivity("10000", intent);
FrameLayout l2 = (FrameLayout) findViewById(R.id.l2);
l2.addView(window.getDecorView());
m_MapCLass = (MapClass) lam.getActivity("10000");
m_MapActivity.setMapClass(m_MapCLass);
}
});
}
When StartMapActivity is called I see in the logcat the message that it has started. However immediately following that is the message "couldn't save which view has focus because the focused view com.unity3d.player.UnityPlayer$17@40558528 has no id."
The Unity3d Scene ends and the Google Maps activity starts running.
What I am trying to do is have the Google Maps activity appear over the Unity3D scene, with the scene still running.
I must confess I'm completely new to this and I could be going about this the wrong way. Any help appreciated.
Here's my AndroidManifest file:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.tester"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:debuggable="true">
<activity
android:name=".UnityGMapsTestUnityActivity"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|uiMode|touchscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.unity3d.player.UnityPlayerActivity"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|uiMode|touchscreen">
</activity>
<activity android:name="MapClass"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|uiMode|touchscreen">
</activity>
<activity android:name="com.test.tester.GMapsTestUnityActivity"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|uiMode|touchscreen">
</activity>
<activity android:name="com.unity3d.player"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|uiMode|touchscreen">
</activity>
<activity android:name="com.unity3d.player.UnityPlayerActivity"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|uiMode|touchscreen">
</activity>
<activity android:name="com.unity3d.player.UnityPlayerNativeActivity"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|uiMode|touchscreen">
<meta-data android:name="android.app.lib_name" android:value="unity" />
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="false" />
</activity>
<activity android:name="com.unity3d.player.VideoPlayer"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|uiMode|touchscreen">
</activity>
<uses-library android:name="com.google.android.maps" />
</application>
</manifest>