operator fun ViewGroup.contains(view: View): Boolean
Returns |
|
fun ViewGroup.forEach(action: (view: View) -> Unit): Unit
Performs the given action on each view in this view group. |
|
fun ViewGroup.forEachIndexed(action: (index: Int, view: View) -> Unit): Unit
Performs the given action on each view in this view group, providing its sequential index. |
|
operator fun ViewGroup.get(index: Int): View
Returns the view at |
|
fun ViewGroup.isEmpty(): Boolean
Returns true if this view group contains no views. |
|
fun ViewGroup.isNotEmpty(): Boolean
Returns true if this view group contains one or more views. |
|
operator fun ViewGroup.iterator(): MutableIterator<View>
Returns a MutableIterator over the views in this view group. |
|
operator fun ViewGroup.minusAssign(view: View): Unit
Removes |
|
operator fun ViewGroup.plusAssign(view: View): Unit
Adds |
|
val ViewGroup.size: Int
Returns the number of views in this view group. |