---
title: Introducing PingOne Recognize to users
description: Introduction screen for PingOne Recognize.
component: recognize
page_id: recognize:mobile-sdk:mobile-sdk-introduce-p1recognize-to-users
canonical_url: https://docs.pingidentity.com/recognize/mobile-sdk/mobile-sdk-introduce-p1recognize-to-users.html
llms_txt: https://docs.pingidentity.com/recognize/llms.txt
docs_for_agents: https://developer.pingidentity.com/build-with-ai/docs-for-agents.md
revdate: April 20, 2026
section_ids:
  examples: Examples
  android: Android
  ios: iOS
---

# Introducing PingOne Recognize to users

To introduce PingOne Recognize to users before first enrollment, it can be helpful to show an explanatory screen about the flow that is about to start.

![PingOne Recognize introduction screen](_images/introductionScreenEnglish.PNG)

This screen can be shown using the public API `Keyless.showIntroductionScreen`. This function can be called at any moment (even before setup). It expects a completion callback for when the user taps the main call to action. The message can be customized. For details, refer to [UI customization](mobile-sdk-ui-customization.html).

## Examples

### Android

```kotlin
Keyless.showIntroductionScreen {
    // Perform actions after user taps CTA
}
```

### iOS

```swift
Keyless.showIntroductionScreen {
    // Perform actions after user taps CTA
}
```
