Example usage for android.app Dialog hashCode

List of usage examples for android.app Dialog hashCode

Introduction

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

Prototype

@HotSpotIntrinsicCandidate
public native int hashCode();

Source Link

Document

Returns a hash code value for the object.

Usage

From source file:Main.java

public static void registerDialog(Dialog d) {
    // TODO Auto-generated method stub
    mDialogArray.append(d.hashCode(), d);
}