Home | History | Annotate | Download | only in policy

Lines Matching defs:clicked

30      * Set the given view as clicked or not-clicked.
32 * @param clicked True to set as clicked. False to not-clicked.
34 public static void setIsClickedHeadsUpNotification(View view, boolean clicked) {
35 view.setTag(TAG_CLICKED_NOTIFICATION, clicked ? true : null);
39 * Check if the given view has the flag of "clicked notification"
41 * @return True if the view has clicked. False othrewise.
44 Boolean clicked = (Boolean) view.getTag(TAG_CLICKED_NOTIFICATION);
45 return clicked != null && clicked;