Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了为 D-Pad 优化的 android 应用程序。我有几个带有小部件的容器。该逻辑要求用户可以根据应用程序状态在一个特定容器中选择小部件。我有简单的方法来实现这个逻辑吗?
在运行时,对任何视图使用 View.setFocusable(boolean)。要处理容器中的所有项目,请运行它们的内容,例如
for (int i = 0; i < layout.getChildCount(); i++) { View v = layout.getChildAt(i); v.setFocusable(false); }