Class Definition (Java) - ZCUISDKUtil | Zoho Creator Help

Class Definition (Java)


Note: Zoho Creator's Mobile SDK is currently a Beta feature. We do not recommend using it for apps in the production stage.

The ZCUISDKUtil of Zoho Creator's Android SDK lets you manage the interface of the components of your Zoho Creator applications.

 SubmitHandler

This interface is to assign a callback (from the Form) upon successful form submission.

Methods:

void onSuccess(ZCActionResult zcActionResult)

On successful submission of the form this method will be triggered with ZCActionResult with contains the resultant form's success message, status, record ID and so on.

 

Report attributes

When including your Creator application's reports in your Android apps, you can add the following parameters as querystring to customize the report's UI:

MethodsDescription
void setTitleEnabled(boolean isTitleEnabled)This will show/hide titlebar in report 
void setHeaderMenuEnabled(boolean isHeaderMenuEnabled)This will show/hide menu options in titlebar in report 
void setFooterEnabled(boolean isFooterEnabled)This will show/hide the footer bar in report
void setSearchEnabled(boolean is search enabled)This will show/hide search option in report if footer enabled
void setGroupEnabled(boolean isGroupEnabled)This will show/hide groupby option in report if footer enabled
void setSortEnabled(boolean isSortEnabled)This will show/hide sort option in report if footer enabled
void setFilterEnabled(boolean isFilterEnabled)This will show/hide filter option in report if footer enabled
void setCustomFilterEnabled(boolean isCustomFilterEnabled)This will show/hide custom filters in report if titlebar enabled
void setShowTotalRecordsCount(boolean showTotalRecordsCount)This will show/hide total records count in report if footer enabled
void setPrintEnabled(boolean isPrintEnabled)This will enable/disable print option in record actions
void setExportEnabled(boolean isExportEnabled)This will enable/disable export option if titlebar enabled


  1. Common methods
  2. Form related methods
  3. Report related methods
  4. Page related methods
  5. Class Definition (Kotlin)