Searched refs:lastInteraction (Results 1 – 2 of 2) sorted by relevance
218 TextView lastInteraction = (TextView) result.findViewById(R.id.last_interaction); in testCreateRemoteViewsWithLastInteractionTime() local219 assertEquals(lastInteraction.getText(), "Over 2 weeks ago"); in testCreateRemoteViewsWithLastInteractionTime()265 lastInteraction = (TextView) result.findViewById(R.id.last_interaction); in testCreateRemoteViewsWithLastInteractionTime()266 assertEquals(lastInteraction.getText(), "Over 2 weeks ago"); in testCreateRemoteViewsWithLastInteractionTime()
1290 public static String getLastInteractionString(Context context, long lastInteraction) { in getLastInteractionString() argument1291 if (lastInteraction == 0L) { in getLastInteractionString()1296 Duration durationSinceLastInteraction = Duration.ofMillis(now - lastInteraction); in getLastInteractionString()