0
我正在開發一個phongap構建應用程序。 我需要我的應用出現在Android瀏覽器的共享菜單中。 我已經看到這個Make Android app listen to shared links,但我在電話構建和我沒有清單... 有一種方法可以做到這一點?我也需要處理相對呼叫我的應用程序:)Android瀏覽器共享鏈接到phonegap應用程序
謝謝大家
托馬索
我正在開發一個phongap構建應用程序。 我需要我的應用出現在Android瀏覽器的共享菜單中。 我已經看到這個Make Android app listen to shared links,但我在電話構建和我沒有清單... 有一種方法可以做到這一點?我也需要處理相對呼叫我的應用程序:)Android瀏覽器共享鏈接到phonegap應用程序
謝謝大家
托馬索
我不知道如何工作的PhoneGap可是如果你的活動,那麼你可以使用以下代碼:
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "A text to share");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, "Share via"));
檢查Android's documentation for sending content to other apps。
Here in method shareList
(行406)你有一個工作的例子。
謝謝你的回覆,但我不知道如何使用你的手機信息。 – Tommykx
沒關係!你在這裏檢查過這個答案嗎? [PhoneGap的股的功能到電子郵件-Twitter的和Facebook的](http://stackoverflow.com/questions/4570701/phonegap-share-functionality-to-email-twitter-and-facebook);並檢查[此鏈接](http://www.raymondcamden.com/index.cfm/2012/5/1/Example-of-Intents-with-PhoneGap)too –
我認爲OP希望他的應用程序能夠接收共享意圖,不發送? (實際上,我也在尋找這個:D) – REJH