0

好的,所以我是 android 编程的新手,并且在我的驾驶室之外进行了一个项目。我找到了一个开源项目,它“有点”我希望它做它的远程 droid 2.0,但我不需要它的鼠标方面。我只需要放置一个发送“w”键击的按钮,但我在网上找不到任何东西来告诉我如何操作。我知道如何在 PHP 和 javascript 中执行此操作,我只会添加一个 onclick 事件,但在 android 中不知道。

所以在结束时请帮助一个新的例子或任何可以让我达到我需要的最终效果的教程

有趣的是,我过去曾取笑人们说“我只是想_ __ _为什么这么难”,我总是说代码不明白你想要什么,直到你告诉它。现在我面临着吞下自己的讽刺。

4

1 回答 1

1

Do you intend to send keystrokes from your own app, or do you want to do a 'keylogger' and send to the server keys pressed on the phone?

For the former, you might want to look at: -https://developers.google.com/eclipse/docs/endpoints-androidconnected-gae

the example to do something when a button is clicked.

Button b = (Button) findViewById(R.id.button1);
b.setOnClickListener(new OnClickListener() { 
public void onClick(View v) {
    postData(); //refer to the comments for the postData() example.
});
于 2013-04-17T06:47:32.213 回答