Context-detection API for Android developed as a university project
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }