2016-06-22 6 views
-5

現在、Whatsappを通じていくつかのコンテンツを共有しようとしています。 現在、私はテストを共有することができますが、私はどのようにubarのように以下を共有することができます。androidのubarのようなアプリの共有

私の現在のコードはこれです。テキストはユーバーのウェブサイトのリンクからダウンロードされた

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がウェブURLを検出すると自動的にプレビューを追加すると思います。 – 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)*."> 
関連する問題