Example usage for android.text Editable hashCode

List of usage examples for android.text Editable hashCode

Introduction

In this page you can find the example usage for android.text Editable hashCode.

Prototype

@HotSpotIntrinsicCandidate
public native int hashCode();

Source Link

Document

Returns a hash code value for the object.

Usage

From source file:com.filemanager.free.activities.TextReader.java

@Override
public void afterTextChanged(Editable editable) {

    // searchBox callback block
    if (searchEditText != null && editable.hashCode() == searchEditText.getText().hashCode()) {

        searchTextTask = new SearchTextTask(this);
        searchTextTask.execute(editable);

    }//  w w  w . j  ava  2s  . c  o  m
}