isShowTitleBar

The isShowTitleBar function is used to specify whether the title bar is displayed.

Method signature

copy
isShowTitleBar(showTitleBar: Boolean):GRVStartupParams.Builder

Parameters

Parameter

Data Type

Default value

Required

Description

showTitleBar

Boolean

true

Yes

Controls whether to display the title bar.

  • true: Show the title bar.
  • false: Hide the title bar.

If this parameter is not specified, the title bar is shown by default.

Sample

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

User experience

Value

Screenshot

true

image.png

false

image.png