11

我需要能够知道用户在一段时间内没有与平板电脑/手机进行交互。我目前正在尝试使用以下方法获得这种情报:

@Override
public void onUserInteraction(){ 
    lastInteraction = System.currentTimeMillis();
}

但是,它仅在 Activity(或所述 Activity 中的片段)的直接交互下触发,而不是任何显示的对话框。有没有更通用的方法来实现这一点,而无需将其添加到每个对话框中?

文档

4

1 回答 1

2

我通过将对话框包装到自定义布局中解决了这个问题:

public class InteractionInterceptorLayer extends LinearLayout {

    @Override
    public boolean dispatchTouchEvent(MotionEvent ev) {

        //any actions here...

        return super.dispatchTouchEvent(ev);
    }

    //constructors...
}

在布局定义中:

<com.package.InteractionInterceptorLayer xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    // layout goes here

</com.package.InteractionInterceptorLayer>
于 2014-03-31T18:09:57.470 回答