gpt4 book ai didi

android - 单击通知时获取 PendingIntent 事件

转载 作者:行者123 更新时间:2023-11-29 00:10:07 24 4
gpt4 key购买 nike

我正在尝试在点击通知时触发事件点击。

我有什么

NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
String MyText = "Test";
Notification mNotification = new Notification(R.drawable.notification_template_icon_bg, MyText, System.currentTimeMillis() );
String MyNotificationTitle = "Test!";
String MyNotificationText = "Test!";
Intent MyIntent = new Intent(WifiManager.ACTION_PICK_WIFI_NETWORK);
PendingIntent StartIntent = PendingIntent.getActivity(getApplicationContext(),0,MyIntent, PendingIntent.FLAG_CANCEL_CURRENT);
makeToast(StartIntent.getIntentSender().toString());
mNotification.setLatestEventInfo(getApplicationContext(), MyNotificationTitle, MyNotificationText, StartIntent);
notificationManager.notify( NOTIFY_ME_ID, mNotification);

这很完美,但我不知道如何点击该通知。

我尝试过的

我试图在 onUserInteraction() 上做一些事情,如果我没记错的话,当 Intent 开始一个新 Activity 时似乎会被解雇,但没有成功。

我也试过 onActivityResult() 但我不知道如何获得当前的 Intent。

我最后尝试的是做类似 this 的事情

BroadcastReceiver call_method = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action_name = intent.getAction();
if (action_name.equals("MyIntent")) {
//STUFF HERE
}
};
};
registerReceiver(call_method, new IntentFilter("MyIntent"));

此外,我尝试放置 PendingIntent 而不是放置 MyIntentIntent 但不起作用。

顺便说一下,当我尝试创建一个 Notification

时,我的代码中出现了这个

enter image description here

当我尝试调用 setLatestEventInfo()

enter image description here

但我不知道它是否可能是问题的原因,或者它是否会在未来带来问题。

我做错了什么?

编辑

我刚刚创建了一个示例,说明我的应用目前的功能。当我按下 Button 时,它会弹出一个 Notification,这很简单。在我的真实应用程序上,我不必单击 Button 但它是一样的。我想要的是获取点击 Notification 的事件并利用该事件进行处理。我所做的是创建另一个 Activity ,我把我想要的东西放在里面,然后在 onCreate() 我想做的事情结束时我调用 Finish() 方法来完成该 Activity,但我不知道这是否是最佳方法。 我想要另一种方法,我不想使用两个 Activity...

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Button btnoti;
private static final int NOTIFY_ME_ID=1337;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btnoti = (Button)findViewById(R.id.btnoti);
btnoti.setOnClickListener(this);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();

//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}

return super.onOptionsItemSelected(item);
}

@Override
public void onClick(View v) {
if (v.getId() == R.id.btnoti){
addNotification();
}
}

private void addNotification() {

//We get a reference to the NotificationManager
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
String MyText = "Test";
Notification mNotification = new Notification(R.mipmap.ic_launcher, MyText, System.currentTimeMillis() );
String MyNotificationTitle = "Test!";
String MyNotificationText = "Test!";
Intent MyIntent = new Intent(WifiManager.ACTION_PICK_WIFI_NETWORK);

PendingIntent StartIntent = PendingIntent.getActivity(getApplicationContext(),0,MyIntent, PendingIntent.FLAG_CANCEL_CURRENT);

mNotification.setLatestEventInfo(getApplicationContext(), MyNotificationTitle, MyNotificationText, StartIntent);
notificationManager.notify( NOTIFY_ME_ID, mNotification);
}

编辑 2(三个快速问题)以继续我的代码...

我希望你不介意向我解决三个快速问题...

  1. 从现在开始,我已经使用 Thread.sleep() 来执行一项任务,例如每 30 秒使用一次 while(true) 但我不知道是否这是最好的方法,因为我想让用户选择时间,例如时间可以是 5 分钟或 5 小时......而且我不知道最好的方法是什么,我读过有一种方法或其他方法调用 AlarmManager 是重复任务的正确方法吗?是否有任何源代码示例知道如何使用此 Alarm Manager
  2. 我必须知道用户何时从 Intent (ACTION_PICK_WIFI_NETWORK) 发出“finish()” 我的意思是当我关闭后回到我的应用程序时Intent 我已经使用了 onResume() 但我不知道它是否是正确的工作方式,不是吗? (如果你不明白我想说的很简单,我想知道知道用户何时关闭 Wifi 网络选择器的事件的名称)
  3. 这是一种让您的应用程序在您转到另一个应用程序后仍然存在的方法吗?我的意思是你可以转到另一个应用程序,而你的应用程序在没有用户交互的情况下仍在运行?因为从现在开始,如果我转到另一个应用程序,我的应用程序就像 sleep 或其他东西一样,不会继续运行......我读过一些用 Service 调用任务的东西,我认为它运行良好,即使该应用程序不在最近的应用程序中,它仍在运行...

谢谢,如果你不能回答我,我可以为每个问题发帖,但我认为这些问题可以很快回答。

最佳答案

通常当我们开始 Activity从推送通知中,Intent在开始时恢复 ActivityonCreate()方法。

在您的情况下,您正在启动系统定义的 Activity使用 WifiManager.ACTION_PICK_WIFI_NETWORK行动。我们无权访问 onCreate()这个 Activity ,因此似乎无法恢复 Intent从它。

因为你创建了一个PendingIntent使用 getActivity() , 不可能拦截 Intent使用 BroadcastReceiver . BroadcastReceiverPendingIntent 触发使用 getBroadcast() 创建.

此外,使用 PendingIntent 肯定是错误的代替 Intent (或相反亦然)。这两个实际上不是同一类型 的对象。因此,它们不可互换。如果你观察他们的命名空间分类,它是 android.app.PendingIntentandroid.content.Intent .

我知道这不是您问题的“真实”答案,但这是我目前的全部。如果我能想到解决方案,我会更新这个答案......最好。

关于android - 单击通知时获取 PendingIntent 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30987513/

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