Page Related Methods - ZCUISDKUtil | Zoho Creator Help

Page related methods

The ZCUISDKUtil of Zoho Creator's Android SDK lets you manage the interface of the components of your Zoho Creator applications.
Note: Zoho Creator's Mobile SDK is currently a Beta feature. We do not recommend using it for apps in the production stage.

Methods related to the pages in your Creator applications

Java

  1. static void startHtmlPageActivity(Activity callingActivity, String appOwnerName, String appLinkName, String htmlPageLinkName, String htmlPageDisplayName, String queryString)
This method will launch the activity with the specified html page loaded in it.

Parameters:

callingActivityCurrent activity instance to launch the next activity.
appOwnerNameThe owner name of the application.
appLinkNameThe link name of the application.
htmlPageLinkNameThe link name of the html page.
htmlPageDisplayNameThe display name of the html page.
queryString
The query params to be used in page to perform specific actions in html page. Format:
param1=value1&param2=value2

  1.  static Fragment getFragmentForHtmlPage(String appOwnerName, String appLinkName, String htmlPageLinkName, String queryString)

This will return the UI component for the html page component to be embedded it in your custom screen.

Parameters:

appOwnerNameThe owner name of the application.
appLinkNameThe link name of the application.
htmlPageLinkNameThe link name of the html page
queryString
The query params to be used in page to perform specific actions in html page Format:
param1=value1&param2=value2

Returns:

FragmentHtml page's fragment instance which can be embedded in a activity.
  1. static void startZMLPageActivity(Activity callingActivity, String appOwnerName, String appLinkName, String pageLinkName, String pageDisplayName, String queryString, PageUIBuilder pageUIBuilder)
This method will launch the activity with the specified zml page loaded in it.

Parameters:

callingActivityCurrent activity instance to launch the next activity.
appOwnerNameThe owner name of the application.
appLinkNameThe link name of the application.
PageLinkNameThe link name of the zml page.
PageDisplayNameThe display name of the zml page.
queryString
The query params to be used in page to perform specific actions in zml page. Format:
param1=value1&param2=value2
pageUIBuilderInstance of PageUIBuilder to customize page's user interface like adding floating menu to page.
  1. static Fragment getFragmentForZMLPage(String appOwnerName, String appLinkName, String pageLinkName, String queryString, PageUIBuilder pageUIBuilder)
This will return the UI component for the zml page component to be embedded it in your custom screen.

Parameters:

appOwnerNameThe owner name of the application.
appLinkNameThe link name of the application.
PageLinkNameThe link name of the zml page.
queryStringThe query params to be used in page to perform specific actions in zml page. Format:
param1=value1&param2=value2
pageUIBuilderInstance of PageUIBuilder to customize page's user interface like adding floating menu to page.

Returns:

FragmentZml page's fragment instance which can be embedded in a activity.

Kotlin

callingActivityCurrent activity instance to launch the next activity.
appOwnerNameThe owner name of the application.
appLinkNameThe link name of the application.
htmlPageLinkNameThe link name of the html page.
htmlPageDisplayNameThe display name of the html page.
queryStringThe query params to be used in page to perform specific actions in html page. Format:
param1=value1&param2=value2
  1. static Fragment getFragmentForHtmlPage(String appOwnerName, String appLinkName, String htmlPageLinkName, String queryString)
This will return the UI component for the html page component to be embedded it in your custom screen.

Parameters:

appOwnerNameThe owner name of the application.
appLinkNameThe link name of the application.
htmlPageLinkNameThe link name of the html page
queryStringThe query params to be used in page to perform specific actions in html page Format:
param1=value1&param2=value2

Returns:

FragmentHtml page's fragment instance which can be embedded in a activity.
  1. static void startZMLPageActivity(Activity callingActivity, String appOwnerName, String appLinkName, String pageLinkName, String pageDisplayName, String queryString, PageUIBuilder pageUIBuilder)
This method will launch the activity with the specified zml page loaded in it.

Parameters:

callingActivityCurrent activity instance to launch the next activity.
appOwnerNameThe owner name of the application.
appLinkNameThe link name of the application.
PageLinkNameThe link name of the zml page.
PageDisplayNameThe display name of the zml page.
queryStringThe query params to be used in page to perform specific actions in zml page. Format:
param1=value1&param2=value2
pageUIBuilderInstance of PageUIBuilder to customize page's user interface like adding floating menu to page.
  1. static Fragment getFragmentForZMLPage(String appOwnerName, String appLinkName, String pageLinkName, String queryString, PageUIBuilder pageUIBuilder)
This will return the UI component for the zml page component to be embedded it in your custom screen.

Parameters: 

appOwnerNameThe owner name of the application.
appLinkNameThe link name of the application.
PageLinkNameThe link name of the zml page.
queryStringThe query params to be used in page to perform specific actions in zml page. Format:
param1=value1&param2=value2
pageUIBuilderInstance of PageUIBuilder to customize page's user interface like adding floating menu to page.

Returns:

FragmentZml page's fragment instance which can be embedded in a activity.
  1. fun startHtmlPageActivity( callingActivity: Activity, appOwnerName: String, appLinkName: String, htmlPageLinkName: String, htmlPageDisplayName: String, queryString: String)
Launches the activity with the specific HTML page loaded in it.

Parameters:

callingActivityThe activity instance that has to be used to invoke the next activity.
appOwnerNameThe Zoho username of the specified Creator application’s owner.
appLinkNameThe link name of the specified Creator application.
htmlPageLinkNameThe link name of the specified HTML page.
htmlPageDisplayNameThe display name of the specified HTML page.
queryStringThe parameters that are to be passed to the page to make it perform the required actions. Format:
param1=value1&param2=value2
  1. fun getFragmentForHtmlPage( appOwnerName: String, appLinkName: String, htmlPageLinkName: String, queryString: String ): Fragment?
Returns the UI component for the specified page, which you want to embed in the custom screen of your Android app.

Parameters:

appOwnerNameThe Zoho username of the specified Creator application’s owner.
appLinkNameThe link name of the specified Creator application.
htmlPageLinkNameThe link name of the specified HTML page.
queryStringThe parameters that are to be passed to the page to make it perform the required actions. Format:
param1=value1&param2=value2

Returns:

FragmentThe specified HTML page's fragment instance that you can embed in an activity.
  1. fun startZMLPageActivity( callingActivity: Activity, appOwnerName: String, appLinkName: String, pageLinkName: String, pageDisplayName: String, queryString: String, pageUIBuilder: PageUIBuilder?)
Launches the activity with the specified ZML page loaded in it.

Parameters:

appOwnerNameThe Zoho username of the specified Creator application’s owner.
appLinkNameThe link name of the specified Creator application.
pageLinkNameThe link name of the specified ZML page.
pageDisplayNameThe display name of the specified ZML page.
queryStringThe parameters that are to be passed to the specified page to make it perform the required actions. Format:
param1=value1&param2=value2
pageUIBuilderThe instance of PageUIBuilder to customize the specified page's UI, like adding a floating menu to it.
  1. fun getFragmentForZMLPage( appOwnerName: String, appLinkName: String, pageLinkName: String, queryString: String, pageUIBuilder: PageUIBuilder?): Fragment?

Returns the UI component for the specified ZML page that you want to embed in a custom screen of your Android app.

Parameters:

appOwnerNameThe Zoho username of the specified Creator application’s owner.
appLinkNameThe link name of the specified Creator application.
pageLinkNameThe link name of the specified ZML page.
queryStringThe parameters that are to be passed to the specified page to make it perform the required actions. Format:
param1=value1&param2=value2
pageUIBuilderThe instance of PageUIBuilder to customize the specified page's UI, like adding a floating menu to it.

Returns:

FragmentThe specified ZML page's fragment instance that you can embed in your activity.



        Create. Review. Publish.

        Write, edit, collaborate on, and publish documents to different content management platforms.

        Get Started Now


          Access your files securely from anywhere

            Zoho CRM Training Programs

            Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.

            Zoho CRM Training
              Redefine the way you work
              with Zoho Workplace

                Zoho DataPrep Personalized Demo

                If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.

                Zoho CRM Training

                  Create, share, and deliver

                  beautiful slides from anywhere.

                  Get Started Now


                    Zoho Sign now offers specialized one-on-one training for both administrators and developers.

                    BOOK A SESSION







                                Quick LinksWorkflow AutomationData Collection
                                Web FormsEnterpriseOnline Data Collection Tool
                                Embeddable FormsBankingBegin Data Collection
                                Interactive FormsWorkplaceData Collection App
                                CRM FormsCustomer ServiceAccessible Forms
                                Digital FormsMarketingForms for Small Business
                                HTML FormsEducationForms for Enterprise
                                Contact FormsE-commerceForms for any business
                                Lead Generation FormsHealthcareForms for Startups
                                Wordpress FormsCustomer onboardingForms for Small Business
                                No Code FormsConstructionRSVP tool for holidays
                                Free FormsTravelFeatures for Order Forms
                                Prefill FormsNon-Profit

                                Intake FormsLegal
                                Mobile App
                                Form DesignerHR
                                Mobile Forms
                                Card FormsFoodOffline Forms
                                Assign FormsPhotographyMobile Forms Features
                                Translate FormsReal EstateKiosk in Mobile Forms
                                Electronic Forms
                                Drag & drop form builder

                                Notification Emails for FormsAlternativesSecurity & Compliance
                                Holiday FormsGoogle Forms alternative GDPR
                                Form to PDFJotform alternativeHIPAA Forms
                                Email FormsFormstack alternativeEncrypted Forms

                                Wufoo alternativeSecure Forms

                                TypeformWCAG


                                    All-in-one knowledge management and training platform for your employees and customers.

                                              Create. Review. Publish.

                                              Write, edit, collaborate on, and publish documents to different content management platforms.

                                              Get Started Now





                                                                You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.




                                                                    Manage your brands on social media


                                                                      • Desk Community Learning Series


                                                                      • Digest


                                                                      • Functions


                                                                      • Meetups


                                                                      • Kbase


                                                                      • Resources


                                                                      • Glossary


                                                                      • Desk Marketplace


                                                                      • MVP Corner


                                                                      • Word of the Day


                                                                      • Ask the Experts


                                                                        Zoho Sheet Resources

                                                                         

                                                                            Zoho Forms Resources


                                                                              Secure your business
                                                                              communication with Zoho Mail


                                                                              Mail on the move with
                                                                              Zoho Mail mobile application

                                                                                Stay on top of your schedule
                                                                                at all times


                                                                                Carry your calendar with you
                                                                                Anytime, anywhere




                                                                                      Zoho Sign Resources

                                                                                        Sign, Paperless!

                                                                                        Sign and send business documents on the go!

                                                                                        Get Started Now




                                                                                                Zoho TeamInbox Resources





                                                                                                          Zoho DataPrep Demo

                                                                                                          Get a personalized demo or POC

                                                                                                          REGISTER NOW


                                                                                                            Design. Discuss. Deliver.

                                                                                                            Create visually engaging stories with Zoho Show.

                                                                                                            Get Started Now








                                                                                                                                • Related Articles

                                                                                                                                • Report related methods

                                                                                                                                  The ZCUISDKUtil of Zoho Creator's Android SDK lets you manage the interface of the components of your Zoho Creator applications. Note: Zoho Creator's Mobile SDK is currently a Beta feature. We do not recommend using it for apps in the production ...
                                                                                                                                • Form related methods

                                                                                                                                  The ZCUISDKUtil of Zoho Creator's Android SDK lets you manage the interface of the components of your Zoho Creator applications. Note: You'll need extend your activity from ZCBaseActivity to embed the UI component in your Android app. Java - Methods ...
                                                                                                                                • Common methods

                                                                                                                                  The ZCUISDKUtil of Zoho Creator's Android SDK lets you manage the interface of the components of your Zoho Creator applications. Below are the methods available in it. Note: Zoho Creator's Mobile SDK is currently a Beta feature. We do not recommend ...
                                                                                                                                • Configuring a chart within a page

                                                                                                                                  What does this page cover Learn the steps to build various types of interactive and informative charts including column, bar, line, scatter, area, web, pie, and funnel, based on your specific business needs. They help display real-time updates and ...
                                                                                                                                • Payload Encryption

                                                                                                                                  In a nutshell Zoho Creator provides built-in encryption to secure your data. To add another layer of protection, you can enable the payload encryption feature. This helps achieve end-to-end encryption for all transmitted information, ensuring ...
                                                                                                                                  Wherever you are is as good as
                                                                                                                                  your workplace

                                                                                                                                    Resources

                                                                                                                                    Videos

                                                                                                                                    Watch comprehensive videos on features and other important topics that will help you master Zoho CRM.



                                                                                                                                    eBooks

                                                                                                                                    Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho CRM.



                                                                                                                                    Webinars

                                                                                                                                    Sign up for our webinars and learn the Zoho CRM basics, from customization to sales force automation and more.



                                                                                                                                    CRM Tips

                                                                                                                                    Make the most of Zoho CRM with these useful tips.



                                                                                                                                      Zoho Show Resources