Fixed text colors confusion

This commit is contained in:
Phillip Hsu
2016-08-21 02:16:29 -07:00
parent a473f3fd2c
commit 9b7ab3e644
18 changed files with 171 additions and 35 deletions
@@ -93,7 +93,7 @@ public class TimerNotificationService extends Service {
private void showNotification() {
// Base note
NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_half_day_1_black_24dp) // TODO: correct icon
.setSmallIcon(R.drawable.ic_half_day_1_24dp) // TODO: correct icon
.setShowWhen(false)
.setOngoing(true);
// TODO: Set content intent so that when clicked, we launch
@@ -69,7 +69,7 @@ public class TimerRingtoneService extends RingtoneService<Timer> {
return new NotificationCompat.Builder(this)
.setContentTitle(title)
.setContentText(getString(R.string.times_up))
.setSmallIcon(R.drawable.ic_half_day_1_black_24dp) // TODO: correct icon
.setSmallIcon(R.drawable.ic_half_day_1_24dp) // TODO: correct icon
.setShowWhen(false) // TODO: Should we show this?
// .setOngoing(true) // foreground notes are ongoing by default
.addAction(R.drawable.ic_add_circle_24dp, // TODO: correct icon
@@ -64,7 +64,7 @@ public class TimesUpActivity extends RingtoneActivity<Timer> {
@Override
protected int getAutoSilencedDrawable() {
// TODO: correct icon
return R.drawable.ic_half_day_1_black_24dp;
return R.drawable.ic_half_day_1_24dp;
}
@Override
@@ -85,7 +85,7 @@ public class TimesUpActivity extends RingtoneActivity<Timer> {
@Override
protected int getLeftButtonDrawable() {
// TODO: correct icon
return R.drawable.ic_half_day_1_black_24dp;
return R.drawable.ic_half_day_1_24dp;
}
@Override