2013-11-26 78 views
0

我有一個Android應用程序。我可以使用它添加帖子到時間軸。每個這樣的帖子都在下面通過「viaЖАЛОБАнк」的消息進行簽名。當我點擊此鏈接時,打開此應用程序的頁面。 如何在瀏覽器中打開Goog​​le Play或其他頁面以安裝此應用程序?打開鏈接在Facebook上安裝

+0

https://developers.facebook.com/docs/android/app-link-requests /讀這個 – Triode

+0

感謝每一個!但我明白你認爲我從Adnroid開放。我說的是桌面瀏覽器。 我應該說沒有任何方法可以在Facebook應用頁面中顯示Play Google。由於Google Play中的每個網頁(我的意思是網絡版)都在標題特殊字符串中阻止在Iframe中顯示。 –

回答

0

您可以開始意圖在用戶點擊鏈接時打開鏈接。例如,你可以做到這一點onClick()

Intent fb = new Intent(Intent.ACTION_VIEW); 
fb.setData(Uri.parse("http://facebook.com")); 
startActivity(fb); 
0

我沒有嘗試,但是這應該工作:

Intent intent = new Intent("android.intent.action.VIEW", Uri 
        .parse("https://play.google.com/store/apps/details?id=com.facebook.katana")); 
startActivity(intent);