在 android 中像优步一样分享 Whatsapp
Whats app share like ubar in android
我目前希望通过 Whatsapp 分享一些内容。
目前我可以分享测试,但我怎么能像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
}
该文本是从优步网站 link 下载的,在网页元数据中设置的。
<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)*.">
我目前希望通过 Whatsapp 分享一些内容。 目前我可以分享测试,但我怎么能像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
}
该文本是从优步网站 link 下载的,在网页元数据中设置的。
<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)*.">