how to Open an image in full screen for android device ?

Am developing an AR app using Vuforia, in which i need to show a full screen image like floor plan to the user on a button click.

I went through forum and answers section but couldn’t find anything working ?? Is it that much tricky to open an image in android using Unity ??

Someone please guide.

Thank you.

It’s incredibly easy to display a full-screen image on any platform.

	public Texture image;
	void OnGUI()
	{
		GUI.DrawTexture(new Rect(0 ,0 ,Screen.width , Screen.height), image);
	}

It’s incredibly difficult to get people to search for a question that’s been answered a million and ten times though! :slight_smile: