kahzix
kahzix
private void enqueueAction(Action action) { mQueue.add(action); if (mQueue.size() == 1) { handleAction(); }else{ Log.i(TAG,"mQueue.size != 1 : "+mQueue.size()); } } **In addition, we do not accept issues unrelated to Fragmentation.**
private boolean isThrottleBACK(Action action) { if (action.action == Action.ACTION_BACK) { Action head = mQueue.peek(); if (head != null && head.action == Action.ACTION_POP) { return true; } } return false; }