Back to project page DG-SVG_with_OpenGL.
The source code is released under:
Apache License
If you think the Android project DG-SVG_with_OpenGL listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dividedgames.svg; //ww w .j a v a2 s .co m import android.app.Activity; import android.os.Bundle; /** * @author Jonathan Haslow-Hall */ public class MainActivity extends Activity{ // The render view to draw the svg private RenderView mRenderer; public MainActivity(){ super(); } @Override public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); // Create a new renderer mRenderer = new RenderView(this); // Set the render view as the default view setContentView(mRenderer); } }