List of usage examples for android.app Presentation Presentation
public Presentation(Context outerContext, Display display, int theme)
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; }