跳过主要内容
返回插件
@capgo/capacitor-intent-launcher
教程
由 github.com/Cap-go

意图启动器

使用意图系统启动 Android 意图、打开系统设置以及与其他应用进行交互

指南

关于意图启动器的教程

使用 @capgo/capacitor-intent-launcher

Capacitor 意图启动器插件,用于在 Android 和 iOS 上启动 Android 意图和打开系统设置。

安装

bun add @capgo/capacitor-intent-launcher
bunx cap sync

What This Plugin Exposes

  • startActivityAsync - 启动给定动作的 Android 活动。
  • openIOSSettings - 打开 iOS 设置屏幕。
  • openApplication - 打开应用程序的包名。
  • getApplicationIconAsync - 以 base64 编码的 PNG 字符串获取应用程序图标。

Example Usage

startActivityAsync

启动给定动作的 Android 活动。

import { IntentLauncher } from '@capgo/capacitor-intent-launcher';

// Open location settings
const result = await IntentLauncher.startActivityAsync({
  action: ActivityAction.LOCATION_SOURCE_SETTINGS
});

// Open a specific app settings
const result = await IntentLauncher.startActivityAsync({
  action: ActivityAction.APPLICATION_DETAILS_SETTINGS,
  data: 'package:com.example.app'
});

openIOSSettings

打开 iOS 设置屏幕。

import { IntentLauncher } from '@capgo/capacitor-intent-launcher';

// Open app settings (recommended - officially supported by Apple)
await IntentLauncher.openIOSSettings({ option: IOSSettings.App });

// Open WiFi settings (may not work in all iOS versions)
await IntentLauncher.openIOSSettings({ option: IOSSettings.WiFi });

openApplication

打开应用程序的包名。

import { IntentLauncher } from '@capgo/capacitor-intent-launcher';

// Open Gmail app
await IntentLauncher.openApplication({ packageName: 'com.google.android.gm' });

getApplicationIconAsync

以 base64 编码的 PNG 字符串获取应用程序图标。

import { IntentLauncher } from '@capgo/capacitor-intent-launcher';

const { icon } = await IntentLauncher.getApplicationIconAsync({
  packageName: 'com.google.android.gm'
});
if (icon) {
  const img = document.createElement('img');
  img.src = icon;
}

Full Reference

继续使用@capgo/capacitor-intent-launcher

如果您正在使用 使用@capgo/capacitor-intent-launcher 规划仪表板和API操作,连接它与 @capgo/capacitor-intent-launcher @capgo/capacitor-intent-launcher的实现细节在@capgo/capacitor-intent-launcher中 开始使用 @__CAPGO_KEEP_0__/__CAPGO_KEEP_1__-intent-launcher的实现细节在开始使用中 API概述 API概述的实现细节在API概述中 简介 简介中的实现细节 API 键 API 键中的实现细节