我正在创建一个Android应用来控制我的电脑鼠标。该应用程序有4个按钮(左,右,上,下)。点击它们时,应用程序向pc发送一个整数,在PC上运行的Java应用程序将接收它并移动光标。
现在我想要做的就是当用户长按一个按钮时,应用程序必须连续发送号码到pc,直到用户释放按钮。有人请帮我这样做。
答案 0 :(得分:1)
使用OnTouchListener收听MotionEvent.ACTION_DOWN,当它发生时,开始向计算机发送适当的信号,例如每0.5秒。在MotionEvent.ACTION_UP
之后停止这样做。
答案 1 :(得分:-1)
修改强>
public class MainActivity extends Activity implements OnTouchListener {
private TextView TV;
private Thread move_curser;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TV = (TextView) findViewById(R.id.TV1);
TV.setOnTouchListener(this);
}
public boolean onTouch(View v, MotionEvent event) {
boolean isPressed = event.getAction() == MotionEvent.ACTION_DOWN;
boolean isReleased = event.getAction() == MotionEvent.ACTION_UP;
if(isPressed) {
move_curser = new Thread(new move_curser());
move_curser.start();
your_methode();
return true;
} else if(isReleased){
move_curser.interrupt();
return true;
}
return false;
}
public class move_curser implements Runnable {
public void run() {
int time = 500;
try {
Thread.sleep(time);
} catch (InterruptedException e) {
interrupt();
}
while(true){
your_methode();
try {
Thread.sleep(50);
} catch (InterruptedException e) {
interrupt();
}
}
}
}
}