How to play an audiofile after the user pressed a notification?
I am trying to download a song from the internet with the help of a app. I coded it to show a notification when the download is complete but the problem is i dont know what to do when the notification is clicked. I want it to play the song when the notification is clicked.
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
int icon = R.drawable.m; // icon from resources
CharSequence tickerText = "Song Downloaded"; // ticker-text
long when = System.currentTimeMillis(); // notification time
Context context = getApplicationContext(); // application Context
CharSequence contentTitle = name; // expanded message title
CharSequence contentText = "Your song "+name +" has been Song Downloaded"; // expanded message text
Intent notificationIntent = new Intent(this, notif.class);
notificationIntent.putExtra("song", name);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
// the next two lines initialize the Notification, using the configurations above
Notification notification = new Notification(icon, tickerText, when);
notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
notification.flags = Notification.DEFAULT_LIGHTS & Notification.FLAG_AUTO_CANCEL;
notification.ledARGB = 0xff0000ff;
notification.ledOnMS = 500;
notification.ledOffMS = 3000;
notification.defaults |= Notification.DEFAULT_LIGHTS;
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
final int HELLO_ID = 1;
mNotificationManager.notify(HELLO_ID, notification);
This clearly shows that intent starts notif.class but i dont know what to do in notif.class i tried this but when i click on the notif it still doesnt show anything.
class notif extends Activity
{
MediaPlayer abc=new MediaPla开发者_JS百科yer();
public void onCreate(Bundle icicle){
File SDCardRoot = Environment.getExternalStorageDirectory();
Intent intent = getIntent();
Bundle bundle = intent.getExtras();
String name = bundle.getString("song");
try {
abc.setDataSource(SDCardRoot.getAbsolutePath() + "/Music/"+name+".mp3");
abc.prepare();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalStateException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(name!="")
{ abc.start(); }
}
}
try this:
@Override
public void onNewIntent(Intent intent) {
Bundle extras = intent.getExtras();
if (extras!=null) {
...
}
}
精彩评论