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 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.