SparseIntArray.IndexOfValue(Int32) Method

Definition

Returns an index for which #valueAt would return the specified key, or a negative number if no keys map to the specified value.

[Android.Runtime.Register("indexOfValue", "(I)I", "GetIndexOfValue_IHandler")]
public virtual int IndexOfValue (int value);
[<Android.Runtime.Register("indexOfValue", "(I)I", "GetIndexOfValue_IHandler")>]
abstract member IndexOfValue : int -> int
override this.IndexOfValue : int -> int

Parameters

value
Int32

Returns

Attributes

Remarks

Returns an index for which #valueAt would return the specified key, or a negative number if no keys map to the specified value. Beware that this is a linear search, unlike lookups by key, and that multiple keys can map to the same value and this will find only one of them.

Java documentation for android.util.SparseIntArray.indexOfValue(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to