Example usage for android.graphics Typeface equals

List of usage examples for android.graphics Typeface equals

Introduction

In this page you can find the example usage for android.graphics Typeface equals.

Prototype

@Override
    public boolean equals(Object o) 

Source Link

Usage

From source file:com.commonsware.cwac.crossport.design.widget.CollapsingTextHelper.java

private boolean areTypefacesDifferent(Typeface first, Typeface second) {
    return (first != null && !first.equals(second)) || (first == null && second != null);
}