Example usage for android.widget Adapter isEmpty

List of usage examples for android.widget Adapter isEmpty

Introduction

In this page you can find the example usage for android.widget Adapter isEmpty.

Prototype

boolean isEmpty();

Source Link

Usage

From source file:com.google.android.demos.jamendo.widget.StatusViewManager.java

private boolean isEmpty() {
    // Don't use AdapterView#getCount() because it is updated asynchronously
    Adapter adapter = mAdapterView.getAdapter();
    return adapter == null || adapter.isEmpty();
}