如何添加Facebook的分享按钮,在Android应用程序 [英] How to add Facebook Share button in Android Application

查看:120
本文介绍了如何添加Facebook的分享按钮,在Android应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是初学android.I要添加Facebook分享按钮,在我的Andr​​oid application.I创造2.2应用程序。请帮我 我用这个code

 意图emailIntent =新的意图(android.content.Intent.ACTION_SEND);
emailIntent.setType(text / plain的);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,getResources().getStri‌​ng(R.string.title_activity_android_face_book_share));
emailIntent.putExtra(android‌​.content.Intent.EXTRA_TEXT,getResources().getString(R.string.title_activity_android_face_book_share));
startActivity(emailIntent);
 

我使用下面的链接也最好的方法在安卓

解决方案

 意图shareIntent =新的意图(Intent.ACTION_SEND);
  shareIntent.setType(text / plain的);
  shareIntent.putExtra(Intent.EXTRA_TEXTURLyouWantToShare);
  startActivity(Intent.createChooser(shareIntent,共享...));
 

使用的ACTION_SEND意图,添加要共享的网址。用户将获得一个选择的应用程序接受份额的意图,如Facebook等。

I am beginner in android.I want to add FacebookShare button in my android application.I create the app in 2.2 .please help me I use this code

Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/plain"); 
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,getResources().getStri‌​ng(R.string.title_activity_android_face_book_share));
emailIntent.putExtra(android‌​.content.Intent.EXTRA_TEXT,getResources().getString(R.string.title_activity_android_face_book_share));  
startActivity(emailIntent); 

I Use the following link also Best way for social sharing in Android

解决方案

  Intent shareIntent = new Intent(Intent.ACTION_SEND);
  shareIntent.setType("text/plain");
  shareIntent.putExtra(Intent.EXTRA_TEXT, "URLyouWantToShare");
  startActivity(Intent.createChooser(shareIntent, "Share..."));

Use the ACTION_SEND Intent, add the URL you want to share. User will be given a selection of apps to accept the share intent such as facebook etc.

这篇关于如何添加Facebook的分享按钮,在Android应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆