fun startFormActivity(activity: Activity, appOwnerName: String, appLinkName: String, formLinkName: String, formDisplayName: String, queryParam: String)
Launches the FormActivity with the specified form loaded in it.
Parameters:
| activity | Current activity instance to launch the next activity. |
| appOwnerName | The Zoho username of the required Creator application's owner. |
| appLinkName | The link name of the Creator application that contains the specified form. |
| formLinkName | The link name of the required form. |
| formDisplayName | The display name of the required form. |
| queryParam | Specifies values for the required fields in the required form. Format: |
fun getFragmentForForm(appOwnerName: String, appLinkName: String, formLinkName: String, queryString: String, submitHandler: SubmitHandler?): Fragment?
Returns the Fragment with the specified form loaded in it. If the submitHandler parameter is not null, it will throw callback to SubmitHandler onSuccess().
Parameters:
| appOwnerName | The Zoho username of the required Creator application's owner. |
| appLinkName | The link name of the Creator application that contains the specified form. |
| formLinkName | The link name of the required form. |
| queryString | Specifies values for the required fields in the required form. Format: |
| submitHandler | The instance of the SubmitHandler interface. Keep it as null if no callback is required. |
