He made a game on the guide from Kilobolt and made a game on java first. When I tried to transfer to the guide on the android, I noticed that there are no many methods from java.awt. * To android. Is there an alternative to java.awt.Graphics?
Here is how an example method in java
public void paintItBlack(Graphics g) { if (currentRoom>=0) { g.setColor(Color.BLACK); g.fillRect(0, 0, 1024, 640); } }