Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Dialog Configs

Angad Singh edited this page May 29, 2017 · 11 revisions

DialogConfigs is the helper class that keeps Default/Supported Configurations of Dialog.

Summary

Constants Description
int SINGLE_MODE
It specifies that a single File/Directory has to be selected from the list of Files/Directories. It is the default Selection Mode.
int MULTI_MODE
It specifies that multiple Files/Directories has to be selected from the list of Files/Directories.
int FILE_SELECT
It specifies that from list of Files/Directories a File has to be selected. It is the default Selection Type.
int DIR_SELECT
It specifies that from list of Files/Directories a Directory has to be selected.
int FILE_AND_DIR_SELECT
It specifies that from list of Files/Directories both can be selected.
String DEFAULT_DIR
All directories are initialized with this value. It is the root mount point of the all internal and external memories.

Public Variables

SINGLE_MODE

int SINGLE_MODE

It specifies that a single File/Directory has to be selected from the list of Files/Directories. It is the default Selection Mode.

Constant Value: 0

MULTI_MODE

int MULTI_MODE

It specifies that multiple Files/Directories has to be selected from the list of Files/Directories.

Constant Value: 1

FILE_SELECT

int FILE_SELECT

It specifies that from list of Files/Directories a File has to be selected. It is the default Selection Type.

Constant Value: 0

DIR_SELECT

int DIR_SELECT

It specifies that from list of Files/Directories a Directory has to be selected.

Constant Value: 1

FILE_AND_DIR_SELECT

int FILE_AND_DIR_SELECT

It specifies that from list of Files/Directories both can be selected.

Constant Value: 2

DEFAULT_DIR

String DEFAULT_DIR

All directories are initialized with this value. It is the root mount point of the all internal and external memories.

Constant Value: "/mnt"

Clone this wiki locally