isShowTitleLoading

The isShowTitleLoading function is used to specify whether to show the loading view on the title bar.

Method signature

copy
isShowTitleLoading(showTitleLoading: Boolean):GRVStartupParams.Builder

Parameters

Parameter

Data Type

Default

Required

Description

showTitleLoading

Boolean

false

Yes

Controls whether to show the loading view on the title bar.

Valid values:

  • true: show the loading view on the title bar.
  • false: hide the loading view on the title bar.

If this parameter is not specified, the loading view on the title bar is hidden by default.

Sample

copy
val startupParams = GRVStartupParams.createBuilderForApp(context, appId)
    .isShowTitleLoading(true)
    .build()
Griver.openApp(startupParams,null)

User experience

Value

Screenshot

true

image.png

false

image.png