Example usage for android.support.v4.content LoaderTrojan isContentChanged

List of usage examples for android.support.v4.content LoaderTrojan isContentChanged

Introduction

In this page you can find the example usage for android.support.v4.content LoaderTrojan isContentChanged.

Prototype

public static <T> boolean isContentChanged(final Loader<T> loader) 

Source Link

Usage

From source file:org.mariotaku.twidere.loader.support.ObjectCursorLoader.java

@Override
public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
    super.dump(prefix, fd, writer, args);
    writer.print(prefix);/* w  w w.  j  ava2s.  com*/
    writer.print("mUri=");
    writer.println(mUri);
    writer.print(prefix);
    writer.print("mProjection=");
    writer.println(Arrays.toString(mProjection));
    writer.print(prefix);
    writer.print("mSelection=");
    writer.println(mSelection);
    writer.print(prefix);
    writer.print("mSelectionArgs=");
    writer.println(Arrays.toString(mSelectionArgs));
    writer.print(prefix);
    writer.print("mSortOrder=");
    writer.println(mSortOrder);
    writer.print(prefix);
    writer.print("mObjects=");
    writer.println(mObjects);
    writer.print(prefix);
    writer.print("mContentChanged=");
    writer.println(LoaderTrojan.isContentChanged(this));
}