Example usage for android.support.v4.content LoaderTrojanHorse getContentChanged

List of usage examples for android.support.v4.content LoaderTrojanHorse getContentChanged

Introduction

In this page you can find the example usage for android.support.v4.content LoaderTrojanHorse getContentChanged.

Prototype

public static final boolean getContentChanged(Loader<?> loader) 

Source Link

Usage

From source file:com.uphyca.support.v4.content.CursorLoaderCompat.java

@Override
public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
    super.dump(prefix, fd, writer, args);
    writer.print(prefix);/*from  w  w  w  .  j av a  2s . 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("mCursor=");
    writer.println(mCursor);
    writer.print(prefix);
    writer.print("mContentChanged=");
    writer.println(LoaderTrojanHorse.getContentChanged(this));
}