mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +00:00
23 lines
590 B
Markdown
23 lines
590 B
Markdown
---
|
|
title: Keyman for Android APIs
|
|
---
|
|
|
|
## Summary
|
|
|
|
The **`Keyman for Android`** app has the following APIs for integration:
|
|
|
|
|
|
## Description
|
|
|
|
The Keyman for Android app installs as an Input Method Extension. When selected as the active system keyboard, it provides the following APIs:
|
|
|
|
|
|
## Intents
|
|
|
|
When the Keyman system keyboard changes the associated font name, the following Intent is broadcast so the integrating application can match the font:
|
|
|
|
```java
|
|
intent = new Intent("com.tavultesoft.kmapro.keyboard_changed");
|
|
intent.putExtra("fontName", fontName);
|
|
sendBroadcast(intent);
|
|
```
|