作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个 Flash 应用程序,我想在通知栏中有一个开/关按钮,然后单击该按钮,我想执行一些操作。我正在做的是这个...
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);
我知道 Intent 只接受类而不是对象,但我想将类对象传递到 onRecieve f BroadCast 接收器中并希望在那里使用它们,任何人都可以帮助我如何做到这一点,我阅读了链接但无法申请。抱歉,如果这是一个愚蠢的问题,我是 Android 编程新手,所以请帮助我,即使问这个问题很愚蠢。
最佳答案
序列化对象可能对您的情况有所帮助。它会将您的对象转换为字符串。只需序列化您的对象并传递它即可。
下面的链接可能对您有帮助。 How to send an object from one Android Activity to another using Intents?
关于java - 我如何将类对象从 mainActivity 类传递到 BroadCastReviever,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22378459/
我是一名优秀的程序员,十分优秀!