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; // www. j av a2 s . com import android.app.Activity; import android.os.Bundle; /** * Created by nr4bt on 08.03.2014. */ public class ShapeActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(new MyGLSurfaceView(this, new MyRenderer(this))); } }