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 Links Workflow Automation Data Collection
                              Web Forms Enterprise Begin Data Collection
                              Interactive Forms Workplace Data Collection App
                              CRM Forms Customer Service Accessible Forms
                              Digital Forms Marketing Forms for Small Business
                              HTML Forms Education Forms for Enterprise
                              Contact Forms E-commerce Forms for any business
                              Lead Generation Forms Healthcare Forms for Startups
                              Wordpress Forms Customer onboarding Order Forms for Small Business
                              No Code Forms Construction RSVP tool for holidays
                              Free Forms Travel
                              Prefill Forms Non-Profit

                              Intake Forms Legal
                              Mobile App
                              Form Designer HR
                              Mobile Forms
                              Card Forms Food Offline Forms
                              Assign Forms Photography
                              Mobile Forms Features
                              Translate Forms Real Estate Kiosk in Mobile Forms
                              Electronic Forms Banking 
                              Notification Emails for Forms Alternatives Security & Compliance
                              Holiday Forms Google Forms alternative  GDPR
                              Form to PDF Jotform alternative HIPAA Forms
                              Email Forms
                              Encrypted Forms
                              Embeddable Forms
                              Secure Forms
                              Drag & drop form builder
                              WCAG

                                      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 ...
                                                                                                                        • Understanding page builder

                                                                                                                          1. What does this page cover? Learn about the page builder and how you can customize your page and its elements according to your business needs. 2. Availability Pages can be created in all plans of Creator. Only the super admin, admins, and ...
                                                                                                                        • Understanding forms in a page

                                                                                                                          Embedding forms inside the page makes it easier for the user to add data directly to his Zoho Creator application from the page itself. This saves the effort of having to leave the page, navigate to a form from the same or a different app in your ...
                                                                                                                          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