我想要檢測用戶在Android應用程序的任何位置查看視圖的任何位置。如何檢測用戶在Android中查看視圖的時間
我的代碼如下所示:
linearLayout = (LinearLayout) findViewById(R.id.linearLayout); // main layout
// ...
linearLayout.setOnTouchListener(this);
// ...
public boolean onTouch(View v, MotionEvent event) {
Toast.makeText(this, "Touch!", 1000);
if (event.getAction() == MotionEvent.ACTION_DOWN) {
Toast.makeText(this, "Down!", 1000);
return true;
}
return false;
}
...但是當我點擊的看法,我不明白吐司!
觸摸事件是否在模擬器中工作 - 或者我的代碼中有錯誤嗎?
我一直在尋找相同的解決方案。感謝Biswajit – 2016-05-23 17:58:33