我已经编写了这个 android 代码,但它在单击时不起作用或显示任何内容。为此,我在此代码中没有 XML 活动。
public Pro(Game game) {
super(game);
}
@Override
public void update(float deltaTime) {
Graphics g = game.getGraphics();
List<TouchEvent> touchEvents = game.getInput().getTouchEvents();
int len1 = touchEvents.size();
for (int i = 0; i < len1; i++) {
TouchEvent event = touchEvents.get(i);
if (event.type == TouchEvent.TOUCH_UP) {
if (inBounds(event, 550, 350, 350, 450)) {
try {
URI uri = new URI("www.google.com");
} catch (URISyntaxException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
private boolean inBounds(TouchEvent event, int x, int y, int width,
int height) {
if (event.x > x && event.x < x + width - 1 && event.y > y
&& event.y < y + height - 1)
return true;
else
return false;
}
请帮我解决问题。