如何在Android的服务中实现ViewTreeObserver.OnWindowFocusChangeListener。当我在我的java文件中使用它时,代码没有显示任何类型的错误。有没有其他方法可以在服务中使用OnWindowFocusChangeListener?请帮助我。提前感谢!!
这样做
WindowManager windowManager=(WindowManager)getSystemService(WINDOW_SERVICE);
LayoutInflater inflater=
(LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
RelativeLayout layout=(RelativeLayout) inflater.inflate(R.layout.box,null);
你需要一个 WindowManager.LayoutParams 对象,它应该包含布局的参数
windowManager.addView(layout,params);
现在在所需的视图上添加 ViewTreeObserver.OnWindowFocusChangeListener。