-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gabor Keszthelyi
committed
Aug 10, 2017
1 parent
5c1a4d7
commit d9304f0
Showing
13 changed files
with
356 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
opentasks/src/main/java/org/dmfs/tasks/notification/signals/CustomizableSignal.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright 2017 dmfs GmbH | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.dmfs.tasks.notification.signals; | ||
|
||
import android.app.Notification; | ||
|
||
import org.dmfs.tasks.utils.BitFlagUtils; | ||
|
||
|
||
/** | ||
* {@link NotificationSignal} which receives all the relevant signal booleans in the constructor. | ||
* | ||
* @author Gabor Keszthelyi | ||
*/ | ||
public final class CustomizableSignal implements NotificationSignal | ||
{ | ||
private final boolean mSound; | ||
private final boolean mVibrate; | ||
private final boolean mLight; | ||
|
||
|
||
public CustomizableSignal(boolean sound, boolean vibrate, boolean light) | ||
{ | ||
mSound = sound; | ||
mVibrate = vibrate; | ||
mLight = light; | ||
} | ||
|
||
|
||
@Override | ||
public int defaultsValue() | ||
{ | ||
int result = 0; | ||
if (mSound) | ||
{ | ||
result = BitFlagUtils.addFlag(result, Notification.DEFAULT_SOUND); | ||
} | ||
if (mVibrate) | ||
{ | ||
result = BitFlagUtils.addFlag(result, Notification.DEFAULT_VIBRATE); | ||
} | ||
if (mLight) | ||
{ | ||
result = BitFlagUtils.addFlag(result, Notification.DEFAULT_LIGHTS); | ||
} | ||
return result; | ||
} | ||
} |
Oops, something went wrong.