我正在使用我的主要活动中包含的复合控件:
<com.example.test.StatusBar
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="#FF333333" />
和那类是
public class StatusBar extends LinearLayout
当我的应用程序进入后台/前台时,我现在想在 StatusBar 类中获取一个事件。这些事件onPause(), onResume()
......在这种情况下不起作用,因为它们只存在于一个活动中,并且我已经在扩展我的班级LinearLayout
我也不想从活动中转发这些事件,因为我在每个活动上都显示了这个状态栏.
有机会获得这些活动吗?
谢谢你的帮助。
菲利普
编辑:API 版本为 14
Edit2:似乎不可能:http ://www.vogella.com/articles/AndroidCustomViews/article.html - 2.3。活动生命周期