gpt4 book ai didi

java - 我似乎无法识别 Android 上的触摸事件

转载 作者:行者123 更新时间:2023-12-01 11:35:53 26 4
gpt4 key购买 nike

我只是想检测每次点击屏幕已经过去了多少时间。但我似乎无法识别屏幕点击。我有一个 onTouchEvent 方法,应该调用我的 checkTime 方法。 Toast 没有显示任何内容,并且 System.out.println 没有打印。

package com.example.biastester;

import java.util.Calendar;

import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.Toast;

public class Test extends ActionBarActivity {

Calendar c = Calendar.getInstance();
int seconds = c.get(Calendar.SECOND);
@Override

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test);



}

public boolean onTouchEvent(MotionEvent event){
checkTime();
return true;
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.test, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}


public void checkTime(){
int currSeconds = c.get(Calendar.SECOND);
Toast.makeText(this, "tapped", 2);
System.out.println("the time elapsed since the start of this test is" + (currSeconds-seconds) );
if(currSeconds-seconds > 120){
Intent intent = new Intent(this, Results.class);
startActivity(intent);
}
}

}

我以前从未使用过android,所以我不知道我做错了什么。预先感谢您的帮助。

最佳答案

您需要捕获点击事件

此代码处理 increate 中的点击

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

Button b = new Button(this);

b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
checkTime();
}
});

setContentView(new Button(this));

}

关于java - 我似乎无法识别 Android 上的触摸事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29998302/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com