gpt4 book ai didi

java - 我如何将类对象从 mainActivity 类传递到 BroadCastReviever

转载 作者:行者123 更新时间:2023-12-01 13:17:08 25 4
gpt4 key购买 nike

我正在制作一个 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com