Context-detection API for Android developed as a university project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IntroActivity.java 490B

123456789101112131415161718192021222324
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package uk.co.md87.android.contextanalyser;
  6. import android.app.Activity;
  7. import android.os.Bundle;
  8. /**
  9. *
  10. * @author chris
  11. */
  12. public class IntroActivity extends Activity {
  13. /** Called when the activity is first created. */
  14. @Override
  15. public void onCreate(Bundle icicle) {
  16. super.onCreate(icicle);
  17. // ToDo add your GUI initialization code here
  18. }
  19. }