Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Avoider Android Game

Avoider Android Game

An Android Accelerometer game created for CS 329E - Elements of Mobile Computing at The University of Texas at Austin

App Designed & Developer by Kyrsten Kelly & Taylor McCaslin

This project is open source and can be viewed on Github:
https://github.com/Taylor4484/Avoider-Android-Project

Taylor McCaslin

May 13, 2013
Tweet

More Decks by Taylor McCaslin

Other Decks in Technology

Transcript

  1. Things we learned: •  Pair programming is the best! • 

    Catch each other’s mistakes •  Write better code •  Decide better data structures and code format
  2. private static Handler handler = new Handler(); run = new

    Runnable() { @Override public void run() { // Task to run handler.postDelayed(runA, 10000); } }; handler.postDelayed(run, 10000);