Back to project page swipemenu.
The source code is released under:
Apache License
If you think the Android project swipemenu 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.orhanobut.android.swipemenu; //from w ww . jav a2s. c om import android.app.Activity; import android.os.Bundle; /** * Created by nr4bt on 08.03.2014. */ public class TextureActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(new MyGLSurfaceView(this,new TextureRenderer(this))); } }