How to get child views of a ViewGroup in Android?

android, android-webview, view, viewgroup

Solution

WebView has methods `getChildCount()` and `getChildAt(int index)`. You can try to use these methods, but better solution is Bixi's one.

Problem

I have to get child views of WebView. For some text manipulations, I wonder if there is a way to set attributes of child views, for example: ``` View[] childs = webView.getChilds; View ch = childs[0]; ch.setText("manipulated text"); ```

Original source