Example usage for android.view View getForeground

List of usage examples for android.view View getForeground

Introduction

In this page you can find the example usage for android.view View getForeground.

Prototype

public Drawable getForeground() 

Source Link

Document

Returns the drawable used as the foreground of this View.

Usage

From source file:Main.java

public static Drawable getForeground(View view) {
    return view.getForeground();
}