1

所以我有这个扩展功能ViewGroup

inline fun <reified T : View> ViewGroup.allViewsOfType(action: (T) -> Unit) 
{
    val views = Stack<View>()

    afterMeasured {
        views.addAll((0 until childCount).map(this::getChildAt))
    }

    while (!views.isEmpty()) {
        views.pop().let {
            if (it is T) action(it)
            if (it is ViewGroup) {
                afterMeasured {
                    views.addAll((0 until childCount).map(this::getChildAt))
                }
            }
        }
    }
}

我像这样使用它:

tabs.allViewsOfType<Button> { Log.i("Dale", it.text.toString()) }

但不知何故,它不起作用。有什么我做错了吗?

顺便说一句,tabs是 aLinearLayout其中包含三个Buttons。

4

1 回答 1

2

为什么afterMeasure在特定情况下使用?

  1. 我刚刚删除afterMeasure

    inline fun <reified T : View> ViewGroup.allViewsOfType(action: (T) -> Unit) {
        val views = Stack<View>()
    
        views.addAll((0 until childCount).map(this::getChildAt))
    
        while (!views.isEmpty()) {
            views.pop().let {
                if (it is T) action(it)
                if (it is ViewGroup) {
                    views.addAll((0 until childCount).map(this::getChildAt))
                }
            }
        }
    }
    
  2. Log.i()用简单的 Kotlin替换记录器println()

    tabs.allViewsOfType<Button> {
        println("Dale: ${it.text}")
    }
    
  3. 现在你的函数工作得很好:

    I/System.out: Dale: Button 4
                  Dale: Button 3
                  Dale: Button 2
                  Dale: Button 1
    
于 2018-10-18T03:55:23.867 回答