2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

cordovaでメッセージ、ファイルを共有

Posted at

「cordova-plugin-x-socialsharing」を利用します
基本的にはこちらに書いてある通り
https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin

#プラグインの導入

$ cordova plugin add cordova-plugin-x-socialsharing

#使い方
ボタンを用意して、クリック時イベントにて指定

メッセージ共有

<button onclick="window.plugins.socialsharing.share('Test Message')">MSG Share</button>

画像共有

<button onclick="window.plugins.socialsharing.share(null, null, [イメージファイルのパス], null)">IMG Share</button>

メール送信用?(メッセージとタイトル)

<button onclick="window.plugins.socialsharing.share([メッセージ], [タイトル], [イメージファイルのパス], null)">Mail Share</button>

共有用ボタン表示
1.png

「MSG Share」クリックすると、共有先が表示される
2.png

チャットワークに共有してみる
3.png

以上です。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?