FontsContractCompat.Columns

Added in 1.1.0

public final class FontsContractCompat.Columns implements BaseColumns


Defines the constants used in a response from a Font Provider. The cursor returned from the query should have the ID column populated with the content uri ID for the resulting font. This should point to a real file or shared memory, as the client will mmap the given file descriptor. Pipes, sockets and other non-mmap-able file descriptors will fail to load in the client application.

Summary

Constants

static final String
FILE_ID = "file_id"

Constant used to request data from a font provider.

static final String
ITALIC = "font_italic"

Constant used to request data from a font provider.

static final String
RESULT_CODE = "result_code"

Constant used to request data from a font provider.

static final int

Constant used to represent a result was not found.

static final int

Constant used to represent a result was found, but cannot be provided at this moment.

static final int

Constant used to represent that the query was not in a supported format by the provider.

static final int

Constant used to represent a result was retrieved successfully.

static final String
TTC_INDEX = "font_ttc_index"

Constant used to request data from a font provider.

static final String
VARIATION_SETTINGS = "font_variation_settings"

Constant used to request data from a font provider.

static final String
WEIGHT = "font_weight"

Constant used to request data from a font provider.

Public constructors

Inherited Constants

From android.provider.BaseColumns
static final String
_COUNT = "_count"
static final String
_ID = "_id"

Constants

FILE_ID

Added in 1.1.0
public static final String FILE_ID = "file_id"

Constant used to request data from a font provider. The cursor returned from the query may populate this column with a long for the font file ID. The client will request a file descriptor to "file/FILE_ID" with this ID immediately under the top-level content URI. If not present, the client will request a file descriptor to the top-level URI with the given base font ID. Note that several results may return the same file ID, e.g. for TTC files with different indices.

ITALIC

Added in 1.1.0
public static final String ITALIC = "font_italic"

Constant used to request data from a font provider. The cursor returned from the query should have this column populated with the int italic for the resulting font. This should be 0 for regular style and 1 for italic.

RESULT_CODE

Added in 1.1.0
public static final String RESULT_CODE = "result_code"

Constant used to request data from a font provider. The cursor returned from the query should have this column populated to indicate the result status of the query. This will be checked before any other data in the cursor. Possible values are RESULT_CODE_OK, RESULT_CODE_FONT_NOT_FOUND, RESULT_CODE_MALFORMED_QUERY and RESULT_CODE_FONT_UNAVAILABLE. If not present, RESULT_CODE_OK will be assumed.

RESULT_CODE_FONT_NOT_FOUND

Added in 1.1.0
public static final int RESULT_CODE_FONT_NOT_FOUND = 1

Constant used to represent a result was not found. See RESULT_CODE.

RESULT_CODE_FONT_UNAVAILABLE

Added in 1.1.0
public static final int RESULT_CODE_FONT_UNAVAILABLE = 2

Constant used to represent a result was found, but cannot be provided at this moment. Use this to indicate, for example, that a font needs to be fetched from the network. See RESULT_CODE.

RESULT_CODE_MALFORMED_QUERY

Added in 1.1.0
public static final int RESULT_CODE_MALFORMED_QUERY = 3

Constant used to represent that the query was not in a supported format by the provider. See RESULT_CODE.

RESULT_CODE_OK

Added in 1.1.0
public static final int RESULT_CODE_OK = 0

Constant used to represent a result was retrieved successfully. The given fonts will be attempted to retrieve immediately via openFile. See RESULT_CODE.

TTC_INDEX

Added in 1.1.0
public static final String TTC_INDEX = "font_ttc_index"

Constant used to request data from a font provider. The cursor returned from the query should have this column populated with an int for the ttc index for the resulting font.

VARIATION_SETTINGS

Added in 1.1.0
public static final String VARIATION_SETTINGS = "font_variation_settings"

Constant used to request data from a font provider. The cursor returned from the query may populate this column with the font variation settings String information for the font.

WEIGHT

Added in 1.1.0
public static final String WEIGHT = "font_weight"

Constant used to request data from a font provider. The cursor returned from the query should have this column populated with the int weight for the resulting font. This value should be between 100 and 900. The most common values are 400 for regular weight and 700 for bold weight.

Public constructors

Columns

Added in 1.1.0
public Columns()