LruCache Constructors

Definition

Overloads

LruCache(Int32)
LruCache(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

LruCache(Int32)

[Android.Runtime.Register(".ctor", "(I)V", "")]
public LruCache (int maxSize);
[<Android.Runtime.Register(".ctor", "(I)V", "")>]
new Android.Util.LruCache : int -> Android.Util.LruCache

Parameters

maxSize
Int32

for caches that do not override #sizeOf, this is the maximum number of entries in the cache. For all other caches, this is the maximum sum of the sizes of the entries in this cache.

Attributes

Remarks

Java documentation for android.util.LruCache.LruCache(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

LruCache(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected LruCache (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Util.LruCache : nativeint * Android.Runtime.JniHandleOwnership -> Android.Util.LruCache

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

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