Hello. I need some help on the following:
- I have the following class:
public class Game extends Activity {...
...}
My questions is:
- Where and how do I create my View (do I use another class that extends View....)
- Where and how do I implement the Runnable interface so I would be able to use threads.
- Where and how do I connect all three (the Activity, the View, the Run() method)
Any help is appreciated.