Android監聽當前Activity螢幕的觸控點選事件
阿新 • • 發佈:2019-01-09
PS:最近接到一個需求:
當用戶在某一頁停留並且如果該使用者在一段時間內沒有點選或者觸控過螢幕,則彈窗提示使用者已經長時間沒有操作螢幕了.
查閱activity的方法,發現有dispatchTouchEvent()這個方法的Override 遂 開始幹活!
下邊是佈局的程式碼:
很簡單 需要其他內容 請自己新增.
下面是activity的程式碼:<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:id="@+id/time_tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="0" android:textColor="#000000" android:textSize="100sp" android:textStyle="bold" /> <Button android:id="@+id/button" android:layout_width="80dp" android:layout_height="50dp" android:layout_centerHorizontal="true" android:text="Button" /> </RelativeLayout>
臨時起意 不太規範 見諒
public class MainActivity extends Activity { private TextView timeTv; private Button button; private Timer timer; private TimerTask task; private int currentTime = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); timeTv = (TextView) findViewById(R.id.time_tv); button = (Button) findViewById(R.id.button); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { showToast("點選了按鈕"); } }); } private void showToast(String text) { Toast toast = Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT); toast.setGravity(Gravity.CENTER, 0, 0); toast.show(); } @Override protected void onResume() { super.onResume(); startTimer(); } private void initTimer() { // 初始化計時器 task = new MyTask(); timer = new Timer(); } class MyTask extends TimerTask { @Override public void run() { // 初始化計時器 runOnUiThread(new Runnable() { @Override public void run() { currentTime++; timeTv.setText(String.valueOf(currentTime)); if (currentTime == 10) { //在這裡彈窗然後停止計時 showToast("你去哪裡了?"); stopTimer(); } } }); } } @Override public boolean dispatchTouchEvent(MotionEvent ev) { switch (ev.getAction()) { case MotionEvent.ACTION_DOWN: //有按下動作時取消定時 stopTimer(); break; case MotionEvent.ACTION_UP: //擡起時啟動定時 startTimer(); break; } return super.dispatchTouchEvent(ev); } private void startTimer() { //啟動計時器 /** * java.util.Timer.schedule(TimerTask task, long delay, long period): * 這個方法是說,delay/1000秒後執行task,然後進過period/1000秒再次執行task, * 這個用於迴圈任務,執行無數次,當然,你可以用timer.cancel();取消計時器的執行。 */ initTimer(); try { timer.schedule(task, 1000, 1000); } catch (IllegalStateException e) { e.printStackTrace(); initTimer(); timer.schedule(task, 1000, 1000); } } private void stopTimer() { if (timer != null) { timer.cancel(); } currentTime = 0; if (timeTv != null) { timeTv.setText(String.valueOf(currentTime)); } } @Override protected void onPause() { super.onPause(); //當activity不在前臺是停止定時 stopTimer(); } @Override protected void onDestroy() { //銷燬時停止定時 stopTimer(); super.onDestroy(); } }
到此為止了,目前使用效果還不錯.