setTitleAlignment

The setTitleAlignment function is used to specify the horizontal positioning of the page title.

Method signature

copy
setTitleAlignment(titleAlignment: Boolean):GRVStartupParams.Builder

Parameters

Parameter

Data Type

Default value

Required

Description

titleAlignment

Boolean

false

Yes

Controls the horizontal positioning of the page title.

Valid values are:

  • trueAlign the page title to the center of the title bar.
  • false: Align the page title to the start of the title bar.

If this parameter is not specified, align the page title to the start of the title bar by default.

Sample

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

User experience

Value

Screenshot

true

image.png

false

image.png