Example usage for android.app Activity hashCode

List of usage examples for android.app Activity hashCode

Introduction

In this page you can find the example usage for android.app Activity hashCode.

Prototype

@HotSpotIntrinsicCandidate
public native int hashCode();

Source Link

Document

Returns a hash code value for the object.

Usage

From source file:uk.ac.horizon.ug.exploding.client.logging.ActivityLogger.java

public ActivityLogger(Activity activity) {
    activityClass = activity.getClass();
    activityHashCode = activity.hashCode();
}