Android Open Source - DoomPlay Download Notif Builder






From Project

Back to project page DoomPlay.

License

The source code is released under:

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUC...

If you think the Android project DoomPlay listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.perm.DoomPlay;
// www  .j a  va 2 s.  c  om
/*
 *    Copyright 2013 Vladislav Krot
 *
 *    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.
 *
 *    You can contact me <DoomPlaye@gmail.com>
 */

import android.app.Notification;
import android.app.PendingIntent;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.support.v4.app.NotificationCompat;
import android.widget.RemoteViews;

import java.io.File;

class DownloadNotifBuilder
{
    private final Audio track;
    private final String filePath;
    private final Context context;

    public int notificationId = 0;

    private static int counter  = 0;


    public DownloadNotifBuilder(Audio track, String filePath, Context context)
    {
        this.track = track;
        this.filePath = filePath;
        this.context = context;

        counter++;
        if(counter == Integer.MAX_VALUE)
            counter = 0;

        notificationId = counter;
    }

    private Notification createStartingOld()
    {
        NotificationCompat.Builder builder = new NotificationCompat.Builder(context);

        builder.setOngoing(true);
        builder.setContentTitle(context.getResources().getString(R.string.Downloading));
        builder.setContentText(track.getArtist() + "-" + track.getTitle());
        builder.setSmallIcon(R.drawable.download_icon);

        Intent intentClose = new Intent(PlayingService.actionClose);
        intentClose.putExtra("aid", track.getAid());
        intentClose.setComponent(new ComponentName(context, DownloadingService.class));

        builder.setContentIntent(PendingIntent.getService(context, notificationId, intentClose, PendingIntent.FLAG_UPDATE_CURRENT));

        return builder.build();
    }

    public Notification createStarting()
    {
        if(Build.VERSION.SDK_INT >= 11)
            return createStartingNew();
        else
            return createStartingOld();
    }

    private Notification createStartingNew()
    {
        Notification notification = new Notification();
        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.notif_download);

        views.setProgressBar(R.id.progressDownload, 100,0, true);
        views.setTextViewText(R.id.notifTitle, context.getResources().getString(R.string.Downloading));
        views.setTextViewText(R.id.notifArtist, track.getArtist() + "-" + track.getTitle());
        views.setImageViewResource(R.id.notifPause,R.drawable.widget_pause);

        ComponentName componentName = new ComponentName(context,DownloadingService.class);

        Intent intentClose = new Intent(PlayingService.actionClose);
        intentClose.putExtra("aid",track.getAid());
        intentClose.setComponent(componentName);

        Intent intentPause = new Intent(PlayingService.actionIconPause);
        intentPause.putExtra("aid",track.getAid());
        intentPause.setComponent(componentName);

        views.setOnClickPendingIntent(R.id.notifClose,
                PendingIntent.getService(context, notificationId, intentClose,PendingIntent.FLAG_UPDATE_CURRENT));

        views.setOnClickPendingIntent(R.id.notifPause,
                PendingIntent.getService(context, notificationId, intentPause,PendingIntent.FLAG_UPDATE_CURRENT));

        notification.contentView = views;
        notification.flags = Notification.FLAG_ONGOING_EVENT;
        notification.icon = R.drawable.download_icon;

        return notification;

    }


    public Notification createPaused()
    {
        Notification notification = new Notification();
        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.notif_download);

        views.setProgressBar(R.id.progressDownload, 100,0, false);
        views.setTextViewText(R.id.notifTitle,  context.getResources().getString(R.string.paused));
        views.setTextViewText(R.id.notifArtist, track.getArtist() + "-" + track.getTitle());
        views.setImageViewResource(R.id.notifPause,R.drawable.widget_play);

        Intent intentClose = new Intent(PlayingService.actionClose);
        intentClose.putExtra("aid",track.getAid());
        intentClose.setComponent(new ComponentName(context,DownloadingService.class));

        Intent intentPause = new Intent(PlayingService.actionIconPlay);
        intentPause.putExtra("aid",track.getAid());
        intentPause.setComponent(new ComponentName(context,DownloadingService.class));

        views.setOnClickPendingIntent(R.id.notifClose,
                PendingIntent.getService(context, notificationId, intentClose,PendingIntent.FLAG_UPDATE_CURRENT));

        views.setOnClickPendingIntent(R.id.notifPause,
                PendingIntent.getService(context, notificationId, intentPause,PendingIntent.FLAG_UPDATE_CURRENT));

        notification.contentView = views;
        notification.flags = Notification.FLAG_ONGOING_EVENT;
        notification.icon = R.drawable.download_icon;

        return notification;
    }

    public Notification createCompleted()
    {
        NotificationCompat.Builder builder = new NotificationCompat.Builder(context);

        builder.setOngoing(false);
        builder.setContentTitle( context.getResources().getString(R.string.completed));
        builder.setContentText(track.getArtist() + "-" + track.getTitle());
        builder.setSmallIcon(R.drawable.downloaded);

        Intent intent = new Intent();
        intent.setAction(android.content.Intent.ACTION_VIEW);
        intent.setDataAndType(Uri.fromFile(new File(filePath)), "audio/*");

        builder.setContentIntent(PendingIntent.getActivity(context,0,intent,0));
        builder.setAutoCancel(true);

        context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + filePath)));

        return builder.build();
    }

    public Notification createCanceled()
    {
        NotificationCompat.Builder builder = new NotificationCompat.Builder(context);

        builder.setOngoing(false);
        builder.setContentTitle( context.getResources().getString(R.string.canceled));
        builder.setContentText(track.getArtist() + "-" + track.getTitle());
        builder.setSmallIcon(R.drawable.downloaded);
        builder.setAutoCancel(true);

        //throws an exception on old devices without it ;
        builder.setContentIntent(PendingIntent.getActivity(context, 0, new Intent(), 0));

        return builder.build();
    }
    public Notification createError(String message)
    {
        NotificationCompat.Builder builder = new NotificationCompat.Builder(context);

        builder.setOngoing(false);
        builder.setContentTitle( context.getResources().getString(R.string.error));
        builder.setContentText(track.getArtist() + "-" + track.getTitle());
        builder.setSubText(message);
        builder.setSmallIcon(R.drawable.downloaded);
        builder.setAutoCancel(true);

        //throws an exception on old devices without it ;
        builder.setContentIntent(PendingIntent.getActivity(context, 0, new Intent(), 0));

        return builder.build();
    }


}




Java Source Code List

com.api.Account.java
com.api.Api.java
com.api.AudioAlbum.java
com.api.Auth.java
com.api.Group.java
com.api.IdsPair.java
com.api.KException.java
com.api.Media.java
com.api.Params.java
com.api.PhotoTag.java
com.api.Photo.java
com.api.SearchDialogItem.java
com.api.User.java
com.api.Utils.java
com.api.VkStatus.java
com.api.WrongResponseCodeException.java
com.perm.DoomPlay.AbstractControls.java
com.perm.DoomPlay.AbstractList.java
com.perm.DoomPlay.AbstractReceiver.java
com.perm.DoomPlay.AbstractVkItems.java
com.perm.DoomPlay.AddListDialog.java
com.perm.DoomPlay.AddTrackFromPlaybackDialog.java
com.perm.DoomPlay.AddTrackToAlbumDialog.java
com.perm.DoomPlay.AlbumArtGetter.java
com.perm.DoomPlay.AlbumArtistActivity.java
com.perm.DoomPlay.Audio.java
com.perm.DoomPlay.BassPlayer.java
com.perm.DoomPlay.BigWidget.java
com.perm.DoomPlay.CustomViewPager.java
com.perm.DoomPlay.DirectoryChooserActivity.java
com.perm.DoomPlay.DownloadNotifBuilder.java
com.perm.DoomPlay.Download.java
com.perm.DoomPlay.DownloadingService.java
com.perm.DoomPlay.EqualizerActivity.java
com.perm.DoomPlay.EqualizerBandsFragment.java
com.perm.DoomPlay.EqualizerEffectsFragment.java
com.perm.DoomPlay.ExceptionLog.java
com.perm.DoomPlay.FileSystemActivity.java
com.perm.DoomPlay.FullPlaybackActivity.java
com.perm.DoomPlay.ListTracksActivity.java
com.perm.DoomPlay.ListVkActivity.java
com.perm.DoomPlay.ListsAdapter.java
com.perm.DoomPlay.LoginActivity.java
com.perm.DoomPlay.LyricsDialog.java
com.perm.DoomPlay.MainLocalFragment.java
com.perm.DoomPlay.MainScreenActivity.java
com.perm.DoomPlay.MainVkFragment.java
com.perm.DoomPlay.MediaButtonReceiver.java
com.perm.DoomPlay.MyApplication.java
com.perm.DoomPlay.PageFragment.java
com.perm.DoomPlay.PlayingService.java
com.perm.DoomPlay.PlaylistActivity.java
com.perm.DoomPlay.PlaylistDB.java
com.perm.DoomPlay.PlaylistParser.java
com.perm.DoomPlay.ReportDialog.java
com.perm.DoomPlay.SearchActivity.java
com.perm.DoomPlay.SearchVkActivity.java
com.perm.DoomPlay.Serializator.java
com.perm.DoomPlay.SettingActivity.java
com.perm.DoomPlay.SleepDialog.java
com.perm.DoomPlay.SmallWidget.java
com.perm.DoomPlay.TracksHolder.java
com.perm.DoomPlay.Utils.java
com.perm.DoomPlay.VerticalSeekBar.java
com.perm.DoomPlay.VkAlbumsActivity.java
com.perm.DoomPlay.VkFrActivity.java
com.perm.DoomPlay.VkGrActivity.java
com.perm.DoomPlay.VkPopularActivity.java
com.un4seen.bass.BASSFLAC.java
com.un4seen.bass.BASSMIDI.java
com.un4seen.bass.BASSOPUS.java
com.un4seen.bass.BASSWV.java
com.un4seen.bass.BASS_AAC.java
com.un4seen.bass.BASS_ALAC.java
com.un4seen.bass.BASS_APE.java
com.un4seen.bass.BASS_MPC.java
com.un4seen.bass.BASS.java