sketch not starting in emulator
in
Android Processing
•
2 years ago
Hi all,
Got the emulator to run on my PC (Win XP) and using the the following sketch:
void setup()
{
size(480,800);
smooth();
noStroke();
fill(255);
rectMode(CENTER);
};
void draw()
{
background(#FF9900);
rect(width/2,height/2,150,150);
};
Is the sketch supposed to automatically start in the emulator?
The emulator starts, and shows the black ANDROID_ screen for awhile, and then goes to the phone home screen.
What do I have to do to start my program?
Thanks.
qin_23
Got the emulator to run on my PC (Win XP) and using the the following sketch:
void setup()
{
size(480,800);
smooth();
noStroke();
fill(255);
rectMode(CENTER);
};
void draw()
{
background(#FF9900);
rect(width/2,height/2,150,150);
};
Is the sketch supposed to automatically start in the emulator?
The emulator starts, and shows the black ANDROID_ screen for awhile, and then goes to the phone home screen.
What do I have to do to start my program?
Thanks.
qin_23
1