All Products
Search
Document Center

Mobile Platform as a Service:Check icon component

Last Updated:Jul 21, 2023

AUCheckIcon is used to implement the IconView of a select box.

Dependency

See Quick start.

API description

/** Selected.*/
public static final int STATE_CHECKED = 0x01;
/** Deselected.*/
public static final int STATE_UNCHECKED = 0x02;
/** Deselection unavailable.*/
public static final int STATE_CANNOT_UNCHECKED = 0x03;
/** Selection unavailable.*/
public static final int STATE_CANNOT_CHECKED = 0x04;

/**
 * Set the checkIcon state.
 * @param state
 */
public void setIconState(int state);

/**
 * Get the checkIcon state.
 * @return
 */
public int getIconState() ;