Android技术——在Android中的随意视图中找控件

Posted gccbuaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android技术——在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);

这种方法事实上就是递归地从根视图開始查找整个控件树,终于找到符合要求的控件。稍加改写就能够满足各种找控件的需求。




















以上是关于Android技术——在Android中的随意视图中找控件的主要内容,如果未能解决你的问题,请参考以下文章

如何让用户在Android中随意绘制长画布?

Android:编辑以编程方式添加的视图

检索自定义视图时的 Android ClassCastException

在 Android 中的多个视图上同时处理触摸事件

哔哩哔哩ios版怎样像Android版一样可以随意放大调整视频?

android点击跳到左右滑动 页面时 可以随意指定先显示第几个页面吗