Show HTML5 page on Android

I need to display a HTML5 web page on Android through Unity3D. I realize it is tricky to render it into a texture on mobile at this stage, but how about using a plugin to display it in a window on top of Unity 3D?

Basically what I want to achieve is to have the Unity3D game launch an HTML5 webpage on Android, and later close it and return to Unity3D. I suppose it is possible when using a plugin, but I am not sure how to do that.

Hi batmobile,

From my experiences you can just have a button which opens that link (see code) and if the user taps the back key on Android it returns to the unity app.

if (GUILayout.Button("More Games"))
		{
			Application.OpenURL("http://www.actionabbas.com");
		}

Hope this helps

Cheers
Abbas