public final class

SupportSQLiteCompat.Api19Impl

extends java.lang.Object

 java.lang.Object

↳androidx.sqlite.db.SupportSQLiteCompat.Api19Impl

Overview

Helper for accessing functions that require SDK version 19 and higher.

Summary

Methods
public static UrigetNotificationUri(Cursor cursor)

Return the URI at which notifications of changes in this Cursor's data will be delivered.

public static booleanisLowRamDevice(ActivityManager activityManager)

Returns true if this is a low-RAM device.

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Methods

public static Uri getNotificationUri(Cursor cursor)

Return the URI at which notifications of changes in this Cursor's data will be delivered.

Returns:

Returns a URI that can be used with to find out about changes to this Cursor's data. May be null if no notification URI has been set.

public static boolean isLowRamDevice(ActivityManager activityManager)

Returns true if this is a low-RAM device. Exactly whether a device is low-RAM is ultimately up to the device configuration, but currently it generally means something with 1GB or less of RAM. This is mostly intended to be used by apps to determine whether they should turn off certain features that require more RAM.