how to display an image and also a button in sketch
in
Android Processing
•
2 years ago
The following code can display an image in sketch
public void setup(){
public void setup(){
size(img.width,img.height);
background(0);
image(img, 0, 0);
}
But I do not how to display a button besides an image. Anybody has an idea? Thanks!
1