HomeSort by relevance Sort by last modified time
    Searched defs:NotificationVisibility (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/com/android/internal/statusbar/
NotificationVisibility.java 27 public class NotificationVisibility implements Parcelable {
30 private static ArrayDeque<NotificationVisibility> sPool = new ArrayDeque<>(MAX_POOL_SIZE);
38 private NotificationVisibility() {
42 private NotificationVisibility(String key, int rank, boolean visibile) {
51 return "NotificationVisibility(id=" + id
59 public NotificationVisibility clone() {
72 if (that instanceof NotificationVisibility) {
73 NotificationVisibility thatViz = (NotificationVisibility) that;
98 * Return a new NotificationVisibility instance from the global pool. Allows us t
    [all...]
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
VisibilityMetadataFragment.java 95 NotificationVisibility visibility = getVisibilityFromSelectedRadio(mRadioGroup);
110 Notification createNotification(NotificationVisibility visibility) {
123 * Returns a {@link NotificationVisibility} depending on which RadioButton in the radiogroup
127 * @return The instance of {@link NotificationVisibility} corresponding to RadioButton.
129 private NotificationVisibility getVisibilityFromSelectedRadio(RadioGroup radiogroup) {
132 return NotificationVisibility.PUBLIC;
134 return NotificationVisibility.PRIVATE;
136 return NotificationVisibility.SECRET;
139 return NotificationVisibility.PUBLIC;
149 private void showNotificationClicked(NotificationVisibility visibility)
    [all...]
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
VisibilityMetadataFragment.java 95 NotificationVisibility visibility = getVisibilityFromSelectedRadio(mRadioGroup);
110 Notification createNotification(NotificationVisibility visibility) {
123 * Returns a {@link NotificationVisibility} depending on which RadioButton in the radiogroup
127 * @return The instance of {@link NotificationVisibility} corresponding to RadioButton.
129 private NotificationVisibility getVisibilityFromSelectedRadio(RadioGroup radiogroup) {
132 return NotificationVisibility.PUBLIC;
134 return NotificationVisibility.PRIVATE;
136 return NotificationVisibility.SECRET;
139 return NotificationVisibility.PUBLIC;
149 private void showNotificationClicked(NotificationVisibility visibility)
    [all...]
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
VisibilityMetadataFragment.java 95 NotificationVisibility visibility = getVisibilityFromSelectedRadio(mRadioGroup);
110 Notification createNotification(NotificationVisibility visibility) {
123 * Returns a {@link NotificationVisibility} depending on which RadioButton in the radiogroup
127 * @return The instance of {@link NotificationVisibility} corresponding to RadioButton.
129 private NotificationVisibility getVisibilityFromSelectedRadio(RadioGroup radiogroup) {
132 return NotificationVisibility.PUBLIC;
134 return NotificationVisibility.PRIVATE;
136 return NotificationVisibility.SECRET;
139 return NotificationVisibility.PUBLIC;
149 private void showNotificationClicked(NotificationVisibility visibility)
    [all...]

Completed in 113 milliseconds