2016-06-22 32 views
-5

我目前正在尋找通過WhatsApp分享一些內容。 目前我可以分享測試,但我怎樣才能像ubar一樣分享。什麼是應用程序共享像UBB在Android

我現在的代碼是這樣的。

Intent whatsappIntent = new Intent(Intent.ACTION_SEND); 
whatsappIntent.setPackage("com.whatsapp"); 
whatsappIntent.putExtra(Intent.EXTRA_TEXT, <content>+"_Shared Via_ *App Name*"); 
whatsappIntent.setType("text/plain"); 
try { 
    startActivity(whatsappIntent); 
} catch (android.content.ActivityNotFoundException ex) { 
     //whatsapp not installed 
} 

Whats app share

+1

我覺得whatsapp會在檢測到網址時自動添加預覽。 – basilisk

回答

2

該文本從尤伯杯的網站鏈接下載,在網頁的元數據設置。

<meta property="og:title" content="FREE UBER RIDE"> 
<meta property="og:description" content="Sign up now to claim your free gift from Sanjay (₹ 100 off first ride)*."> 
相關問題