如何触发警报

时间:2015-02-08 05:51:19

标签: java android samsung-gear-fit

我的源代码在https://github.com/jackygrahamez/MayDay

我有一个带有onCreate方法的 HomeActivity.java

...
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.welcome_screen);

    Bundle bundle=getIntent().getExtras();
    boolean startedByCUP=false;
    if(bundle!=null) {
        Log.e(">>>>>>", "START_BY_CUP");
        startedByCUP = bundle.getBoolean("START_BY_CUP");
    }
...

我试图找出如何绑定bundle为true的条件来触发multiClickEvent,以便在5次点击后触发警报。硬件触发器内置于此

HardwareTriggerReceiver.java

   ...
   @Override
   public void onReceive(Context context, Intent intent) {
   Log.e(">>>>>>>", "in onReceive of HWReceiver");
   String action = intent.getAction();

   if (!isCallActive(context) && isScreenLocked(context) 
      && (action.equals(ACTION_SCREEN_OFF) ||           
      action.equals(ACTION_SCREEN_ON))) {
    multiClickEvent.registerClick(System.currentTimeMillis());
    if (multiClickEvent.isActivated()) {
        onActivation(context);
        resetEvent();
    }
}
} 
...

MultiClickEvent.java

package com.mayday.md.trigger;

import android.util.Log;

public class MultiClickEvent {
public static final int TIME_INTERVAL = 10000;
private static final int TOTAL_CLICKS = 5;

private Long firstEventTime;
private int clickCount = 0;

public void reset() {
    firstEventTime = null;
    clickCount = 0;
}

public void registerClick(Long eventTime) {
    if (isFirstClick() || notWithinLimit(eventTime)) {
        firstEventTime = eventTime;
        clickCount = 1;
        return;
    }
    clickCount++;
    Log.e(">>>>>>", "MultiClickEvent clickCount = " + clickCount);
}

private boolean notWithinLimit(long current) {
    return (current - firstEventTime) > TIME_INTERVAL;
}

private boolean isFirstClick() {
    return firstEventTime == null;
}

public boolean isActivated() {
    return clickCount >= TOTAL_CLICKS;
}
}

我尝试在HomeActivity中创建MultiClickEvent实例,但不会跟踪点击次数。

1 个答案:

答案 0 :(得分:0)

我最终跟踪适合装备应用的点击次数,然后在onCreate中发送所有警报

        if(bundle!=null) {
        if (!hardwareTriggerReceiver.isCallActive(getApplicationContext())) {
            int c = mPref.getInt("numRun", 0);
            int TIME_INTERVAL = 10000;
            int TOTAL_CLICKS = 5;
            long delta = 0;
            Long eventTime = System.currentTimeMillis();
            mPref.edit().putLong("eventTime", eventTime).commit();
            Long firstEventTime = mPref.getLong("firstEventTime", 0);
            if (firstEventTime == 0) {
                firstEventTime = eventTime;
                mPref.edit().putLong("firstEventTime", firstEventTime).commit();
            }
            delta = eventTime - firstEventTime;
            Log.e(">>>>>>", "START_BY_CUP delta "+delta);
            if (delta < TIME_INTERVAL) {
                c++;
                mPref.edit().putInt("numRun",c).commit();
                Log.e(">>>>>>", "START_BY_CUP "+c);
                if (c >=TOTAL_CLICKS) {
                    hardwareTriggerReceiver.onActivation(getApplicationContext());
                    mPref.edit().putInt("numRun", 0).apply();
                    mPref.edit().putLong("firstEventTime", 0).apply();
                }
            } else {
                mPref.edit().putInt("numRun", 0).apply();
                mPref.edit().putLong("firstEventTime", 0).apply();
            }
        }
    }
相关问题