我已經寫了這個android代碼,但它沒有工作或單擊時顯示任何東西。這段代碼中沒有XML活動。如何通過觸摸按鈕在android中添加一個網站鏈接
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;
}
請幫我解決問題。
我試過了,但它也沒有響應。 – user2846367