gpt4 book ai didi

android - 如何遍历 Android 中的所有 Activity 组件( View )

转载 作者:太空宇宙 更新时间:2023-11-03 12:08:16 26 4
gpt4 key购买 nike

我需要获取所有 Activity 组件的数组,然后我需要遍历此数组并选择,例如,仅选择按钮。这该怎么做 ?

最佳答案

这可能对你有帮助...

public ArrayList<Button> getButtons() {
ArrayList<Button> buttons = new ArrayList<Button>();
ViewGroup viewGroup = (ViewGroup) getWindow().getDecorView();
findButtons(viewGroup, buttons);
return buttons;
}

private static void findButtons(ViewGroup viewGroup,ArrayList<Button> buttons) {
for (int i = 0, N = viewGroup.getChildCount(); i < N; i++) {
View child = viewGroup.getChildAt(i);
if (child instanceof ViewGroup) {
findButtons((ViewGroup) child, buttons);
} else if (child instanceof Button) {
buttons.add((Button) child);
}
}
}

关于android - 如何遍历 Android 中的所有 Activity 组件( View ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21202699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com