Example usage for android.widget Button equals

List of usage examples for android.widget Button equals

Introduction

In this page you can find the example usage for android.widget Button equals.

Prototype

public boolean equals(Object obj) 

Source Link

Document

Indicates whether some other object is "equal to" this one.

Usage

From source file:com.vrem.wifianalyzer.wifi.graph.channel.ChannelGraphNavigation.java

private void setButtonsBackgroundColor(View view) {
    for (Button current : getNavigationItems()) {
        setSelectedButton(current, current.equals(view));
    }//w  ww.ja  v  a 2 s.  c om
}