在Android中的任意视图中找控件

1、在很多情况下,我们可能不知道控件的id,但是我们却希望在包含这个控件的视图中找到它,可以采用如下做法:

例:在Activity的根视图中找出其中所有的Button控件

    private void findButton(ViewGroup group, List<Button> result)
    {
        if (group != null)
        {
            for (int i = 0, j = group.getChildCount(); i < j; i++)
            {
                View child = group.getChildAt(i);
                if (child instanceof Button)
                {
                    result.add((Button) child);
                } else if (child instanceof ViewGroup)
                {
                    findButton((ViewGroup) child, result);
                }
            }
        }
    }

在Activity中调用:

        List<Button> result = new ArrayList<Button>();
        this.findButton((ViewGroup) this.getWindow().getDecorView(), result);

这个方法其实就是递归地从根视图开始查找整个控件树,最终找到符合要求的控件,稍加改写就可以满足各种找控件的需求。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。