Android Open Source - bootcamp-android Main






From Project

Back to project page bootcamp-android.

License

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.

Java Source Code

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);
    }

}




Java Source Code List

com.vandyapps.bootcamp.ArrayAdapterBuilder.java
com.vandyapps.bootcamp.Main.java