Example usage for android.app Presentation Presentation

List of usage examples for android.app Presentation Presentation

Introduction

In this page you can find the example usage for android.app Presentation Presentation.

Prototype

public Presentation(Context outerContext, Display display, int theme) 

Source Link

Document

Creates a new presentation that is attached to the specified display using the optionally specified theme.

Usage

From source file:com.commonsware.android.preso.decktastic.PresentationFragment.java

public void setDisplay(Context ctxt, Display display) {
    if (display == null) {
        preso = null;//from w w  w  . ja  va 2s  . c o  m
    } else {
        preso = new Presentation(ctxt, display, getTheme());
    }

    this.display = display;
}