How to call a non-activity method on Notification Click
问题 I have a java class MyClass which contains a method called callMethod . I want to call this method when user clicks on the notification Below is the code i used to generate the notification public class MainActivity extends AppCompatActivity { Button button; NotificationManager mNotifyMgr; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button = (Button) findViewById(R.id.button); mNotifyMgr =