有没有一个听众,因为一个磨损活动被解雇

时间:2015-03-09 19:10:43

标签: android wear-os

当磨损应用程序上的某个特定活动被解雇时,我需要做一些事情。有没有听众呢?我尝试onBackPressed()希望那是那个,但不幸的是没有。非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

此功能没有系统支持侦听器,但我可以为您提供另一种方法: 使用监听系统来做到这一点,试试

// add the listener when you want to catch the event
EventCenter.addListener(ActivityDestoryEvent.ID, this);

// publish the event when your activity onDestroy
onDestroy(){
   ActivityDestoryEvent event = new ActivityDestoryEvent();
   event.activityName = "test";
   EventCenter.publish(event)
}

这是一种实现事件系统的方法,它可以在可穿戴设备中做很多事情