public class

ViewerBuilder2

extends SkeletalFragmentBuilder<E extends Fragment>
java.lang.Object
   ↳ com.pdftron.pdf.interfaces.builder.SkeletalFragmentBuilder<E extends Fragment>
     ↳ com.pdftron.pdf.config.ViewerBuilder2

Class Overview

Builder to create a PdfViewCtrlTabHostFragment2.

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<ViewerBuilder2> CREATOR
Public Methods
PdfViewCtrlTabHostFragment2 build(Context context)
Convenience build method that calls build(Context, Class) with the default class for this builder.
void checkArgs(Context context)
Check the arguments of this builder.
Bundle createBundle(Context context)
Create the bundle that will be passed as arguments to the Fragment.
int describeContents()
boolean equals(Object o)
int hashCode()
ViewerBuilder2 usingCacheFolder(boolean useCacheFolder)
Call to enable or disable the use of the cache folder when creating temporary files.
ViewerBuilder2 usingConfig(ViewerConfig config)
Call to initialize the document viewer with a specified ViewerConfig.
ViewerBuilder2 usingCustomHeaders(JSONObject headers)
Sets custom headers to use with all requests.
ViewerBuilder2 usingCustomToolbar(int[] menu)
Define the custom menu resources to use in document viewer toolbar.
ViewerBuilder2 usingFileExtension(String fileExtension)
Call to define the actual extension of a file.
ViewerBuilder2 usingFileType(int fileType)
Call to define how the file will be handled by the document viewer.
ViewerBuilder2 usingNavIcon(int navIconRes)
Call to define the navigation icon used by this fragment.
ViewerBuilder2 usingTabClass(Class<? extends PdfViewCtrlTabFragment2> tabFragmentClass)
Call to define the fragment class that will be used to instantiate viewer tabs.
ViewerBuilder2 usingTabHostClass(Class<? extends PdfViewCtrlTabHostFragment2> tabHostClass)
Call to define the fragment class that will be used to instantiate viewer host fragment.
ViewerBuilder2 usingTabTitle(String title)
Call to set the tab title in the document viewer with the specified String.
ViewerBuilder2 usingTheme(int theme)
Call to define the theme.
static ViewerBuilder2 withFile(File file)
Similar to {@link #withFile(File, String)), but without a specified password.
static ViewerBuilder2 withFile(File file, String password)
Similar to {@link #withUri(Uri, String)), but with a specified File object.
static ViewerBuilder2 withUri(Uri file)
static ViewerBuilder2 withUri(Uri file, String password)
Create a ViewerBuilder2 with the specified document and password if applicable.
void writeToParcel(Parcel dest, int flags)
[Expand]
Inherited Methods
From class com.pdftron.pdf.interfaces.builder.SkeletalFragmentBuilder
From class java.lang.Object
From interface android.os.Parcelable
From interface com.pdftron.pdf.interfaces.builder.Builder

Fields

public static final Creator<ViewerBuilder2> CREATOR

Public Methods

public PdfViewCtrlTabHostFragment2 build (Context context)

Convenience build method that calls build(Context, Class) with the default class for this builder.

Parameters
context the context used to initialize the fragment and its theme.
Returns
  • an instance of E with the specified parameters from the builder.

public void checkArgs (Context context)

Check the arguments of this builder. You can also det the default builder parameters in this method.

Parameters
context used to initialize default building parameters

public Bundle createBundle (Context context)

Create the bundle that will be passed as arguments to the Fragment. Called right after calling checkArgs(Context)

Parameters
context used to initialize arguments for the bundle.
Returns
  • the bundle with the required arguments for the Fragment.

public int describeContents ()

public boolean equals (Object o)

public int hashCode ()

public ViewerBuilder2 usingCacheFolder (boolean useCacheFolder)

Call to enable or disable the use of the cache folder when creating temporary files. By default the cache folder is used, and if set to false the Downloads folder is used.

Parameters
useCacheFolder true to enable using the cache folder, false to use the downloads folder
Returns
  • this builder with the specified use of the cache folder

public ViewerBuilder2 usingConfig (ViewerConfig config)

Call to initialize the document viewer with a specified ViewerConfig. Multi-tab is unsupported for the collab documentation viewer and must be disabled in ViewerConfig.

Parameters
config to initialize the document viewer
Returns
  • this builder with the specified ViewerConfig configurations

public ViewerBuilder2 usingCustomHeaders (JSONObject headers)

Sets custom headers to use with all requests.

Parameters
headers custom headers for all requests
Returns
  • this builder with the specified custom headers

public ViewerBuilder2 usingCustomToolbar (int[] menu)

Define the custom menu resources to use in document viewer toolbar.

Parameters
menu custom toolbar menu XML resources to use in the document viewer
Returns
  • this builder with the specified custom toolbar menu

public ViewerBuilder2 usingFileExtension (String fileExtension)

Call to define the actual extension of a file. By default, file extension is obtained from the file name unless otherwise specified

Parameters
fileExtension actual extension of a file.
Returns
  • this builder with actual extension of a file

public ViewerBuilder2 usingFileType (int fileType)

Call to define how the file will be handled by the document viewer. By default, this is unspecified (value of 0) and the document viewer will automatically handle this; this is usually called to fulfill certain requirements and will not be needed in most cases.

The file types are defined in BaseFileInfo.

Parameters
fileType specified to handle the file in a specific way.
Returns
  • this builder with the specified file type handling

public ViewerBuilder2 usingNavIcon (int navIconRes)

Call to define the navigation icon used by this fragment. By default, a menu list icon is used for the navigation button.

Parameters
navIconRes the class that the viewer will used to instantiate tabs
Returns
  • this builder with the specified navigation icon

public ViewerBuilder2 usingTabClass (Class<? extends PdfViewCtrlTabFragment2> tabFragmentClass)

Call to define the fragment class that will be used to instantiate viewer tabs.

Parameters
tabFragmentClass the class that the viewer will used to instantiate tabs
Returns
  • this builder with the specified tab fragment class

public ViewerBuilder2 usingTabHostClass (Class<? extends PdfViewCtrlTabHostFragment2> tabHostClass)

Call to define the fragment class that will be used to instantiate viewer host fragment.

Parameters
tabHostClass the class that the viewer will
Returns
  • this builder with the specified tab host fragment class

public ViewerBuilder2 usingTabTitle (String title)

Call to set the tab title in the document viewer with the specified String. If null is specified, then the default title handling in the document viewer will be used.

Parameters
title title used for the tab when viewing the specified document
Returns
  • this builder with the specified tab title

public ViewerBuilder2 usingTheme (int theme)

Call to define the theme. By default, CustomAppTheme is used.

Parameters
theme the theme res
Returns
  • this builder with the specified theme

public static ViewerBuilder2 withFile (File file)

Similar to {@link #withFile(File, String)), but without a specified password.

public static ViewerBuilder2 withFile (File file, String password)

Similar to {@link #withUri(Uri, String)), but with a specified File object.

public static ViewerBuilder2 withUri (Uri file)

public static ViewerBuilder2 withUri (Uri file, String password)

Create a ViewerBuilder2 with the specified document and password if applicable.

Parameters
file Uri that specifies the location of the document
password used to open the document if needed, null otherwise
Returns
  • builder with the specified document and password

public void writeToParcel (Parcel dest, int flags)