Back to project page bootcamp-android.
The source code is released under:
MIT License
If you think the Android project bootcamp-android 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.vandyapps.bootcamp; // w w w . ja v a 2 s .c o m import android.app.Activity; import android.os.Bundle; public class Main extends Activity { @Override protected void onCreate(Bundle saved) { super.onCreate(saved); setContentView(R.layout.activity_main); } }