如何在 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);
现在在您想要的 View 上添加 ViewTreeObserver.OnWindowFocusChangeListener。
我是一名优秀的程序员,十分优秀!