我正在制作一个flash应用程序,我希望在通知栏中有一个On / Off按钮,然后在该按钮上单击我想要执行某些操作。我在做什么就是这个...
Intent switchIntent = new Intent(this, switchOffButtonListener.class);
PendingIntent pendingSwitchIntent = PendingIntent.getBroadcast(this, 0,
switchIntent, 0);
remoteViews.setOnClickPendingIntent(R.id.closeOnFlash,
pendingSwitchIntent);
但我想这样做我怎么能这样做
//switchOffButtonListener notificationOnOff= new switchOffButtonListener(flash,soundFlashing,closeOnFlash);
Intent switchIntent = new Intent(this, notificationOnOff);
PendingIntent pendingSwitchIntent = PendingIntent.getBroadcast(this, 0,
switchIntent, 0);
remoteViews.setOnClickPendingIntent(R.id.closeOnFlash,
pendingSwitchIntent);
我知道意图只是把课而不是对象但是我想将类对象传递给onRecieve f BroadCast Reciever并且想要使用它们可以有人帮助我如何做到这一点,我读了链接但是没有'能够申请。很抱歉,如果这是一个愚蠢的问题,我是Android编程的新手,所以请帮助我,即使它是愚蠢的问。
答案 0 :(得分:1)
序列化对象可能对您的情况有所帮助。它会将您的对象转换为String。 只需序列化您的对象并传递它。
以下链接可以帮助您。 How to send an object from one Android Activity to another using Intents?