コード例 #1
0
ファイル: TaskListFragment.java プロジェクト: junekai/astrid
 /**
  * Implementation of initiation automatic sync. Subclasses should override this method; the above
  * method takes care of calling it in the correct way
  */
 protected void initiateAutomaticSyncImpl() {
   if (isCurrentTaskListFragment()) syncActionHelper.initiateAutomaticSync(filter);
 }
コード例 #2
0
ファイル: TaskListFragment.java プロジェクト: kflux/tasks
 /**
  * Implementation of initiation automatic sync. Subclasses should override this method; the above
  * method takes care of calling it in the correct way
  */
 protected void initiateAutomaticSyncImpl() {
   if (isCurrentTaskListFragment() && isInbox) {
     syncActionHelper.initiateAutomaticSync();
   }
 }