Searched refs:lastInteraction (Results 1 – 2 of 2) sorted by relevance
223 TextView lastInteraction = (TextView) result.findViewById(R.id.last_interaction); in testCreateRemoteViewsWithLastInteractionTime() local224 assertEquals(lastInteraction.getText(), "Over 2 weeks ago"); in testCreateRemoteViewsWithLastInteractionTime()270 lastInteraction = (TextView) result.findViewById(R.id.last_interaction); in testCreateRemoteViewsWithLastInteractionTime()271 assertEquals(lastInteraction.getText(), "Over 2 weeks ago"); in testCreateRemoteViewsWithLastInteractionTime()
1304 public static String getLastInteractionString(Context context, long lastInteraction) { in getLastInteractionString() argument1305 if (lastInteraction == 0L) { in getLastInteractionString()1310 Duration durationSinceLastInteraction = Duration.ofMillis(now - lastInteraction); in getLastInteractionString()