Example usage for android.widget ViewAnimator showPrevious

List of usage examples for android.widget ViewAnimator showPrevious

Introduction

In this page you can find the example usage for android.widget ViewAnimator showPrevious.

Prototype

@android.view.RemotableViewMethod
public void showPrevious() 

Source Link

Document

Manually shows the previous child.

Usage

From source file:fm.libre.droid.LibreDroid.java

public void prevPage() {
    final ViewAnimator view = (ViewAnimator) findViewById(R.id.viewAnimator);
    view.showPrevious();
    libreServiceConn.service.setCurrentPage(view.getDisplayedChild());
}