Android 基础知识

Android - 主页 Android - 概述 Android - 下载安装和设置 Android - Studio IDE Android - 架构 Android - 应用程序组件 Android - Hello World 示例 Android - 资源 Android - 活动 Android - 服务 Android - 广播接收器 Android - 内容提供者 Android - 片段 Android - Intents/Filters

Android - 用户界面

Android - UI 布局 Android - UI 控件 Android - 事件处理 Android - 样式和主题 Android - 自定义组件

Android 高级概念

Android - 拖放 Android - 通知 Android - 基于位置的服务 Android - 发送电子邮件 Android - 发送短信 Android - 拨打电话 Android - 发布应用程序

Android 实用示例

Android - 警报对话框 Android - 动画 Android - 音频捕捉 Android - 音频管理器 Android - 自动完成 Android - 最佳实践 Android - 蓝牙 Android - 相机 Android - 剪贴板 Android - 自定义字体 Android - 数据备份 Android - 开发者工具 Android - 模拟器 Android - Facebook 集成 Android - 手势 Android - 谷歌地图 Android - 图像效果 Android - 图像切换 Android - 内部存储 Android - JetPlayer Android - JSON 解析器 Android - Linkedin 集成 Android - 旋转加载器 Android - 本地化 Android - 登录应用 Android - 媒体播放器 Android - 多点触控 Android - 导航 Android - 网络连接 Android - NFC 指南 Android - PHP/MySQL Android - 进度圈 Android - 进度条 Android - 推送通知 Android - 渲染脚本 Android - RSS 阅读器 Android - 屏幕投射 Android - SDK 管理器 Android - 传感器 Android - 会话管理 Android - 共享首选项 Android - SIP 协议 Android - 拼写检查器 Android - SQLite 数据库 Android - 支持库 Android - 测试 Android - 文字转语音 Android - TextureView Android - Twitter 集成 Android - UI 设计 Android - UI 模式 Android - UI 测试 Android - WebView 布局 Android - Wi-Fi Android - Widgets Android - XML 解析器

Android 其他

Android - 面试问题 Android - 有用的资源 Android - 测验


Android - Facebook 集成

Android 允许您的应用程序连接到 facebook 并在 facebook 上共享数据或任何类型的更新。 本章是关于将 facebook 集成到您的应用程序中。

您可以通过两种方式集成 facebook 并从您的应用程序中共享某些内容。 下面列出了这些方法 −

  • Facebook SDK
  • 意图共享

集成 Facebook SDK

这是与 facebook 连接的第一种方式。 您必须注册您的应用程序,然后接收一些 Application Id ,然后您必须下载 facebook SDK 并将其添加到您的项目中。 具体步骤如下:

生成应用签名

您必须生成密钥签名,但在生成之前,请确保您已安装 SSL,否则您必须下载 SSl。 可以在这里下载 https://code.google.com/p/openssl-for-windows/downloads/detail?name=openssl-0.9.8k_WIN32.zip

现在打开命令提示符并重定向到您的 java jre 文件夹。 到达那里后,请准确输入此命令。您必须将引号中的路径替换为您可以在 Eclipse 中找到的密钥库路径,方法是选择窗口选项卡并选择首选项选项卡,然后从左侧选择 android 下的构建选项。

keytool -exportcert -alias androiddebugkey -keystore "your path" 
   | openssl sha1 -binary | openssl base64

输入后,系统会提示您输入密码。 给 android 作为密码,然后复制给你的密钥。 如下图所示 −

Android Facebook 教程

注册您的应用程序

现在在 developers.facebook.com/apps 创建一个新的 facebook 应用程序并填写所有信息。 如下图所示 −

Android Facebook 教程

现在移动到本机 android 应用程序部分并填写您的项目和类名称并粘贴您在步骤 1 中复制的哈希值。如下所示 −

Android Facebook 教程

如果一切正常,您将收到一个带有密钥的应用程序 ID。 只需复制应用程序 ID 并将其保存在某处。 如下图所示−

Android Facebook 教程

下载 SDK 并集成

在此处下载 facebook sdk https://github.com/facebook/facebook-android-sdk。 将此导入eclipse。 导入后,右键单击您的 facebook 项目并单击属性。单击 android,单击添加按钮并选择 facebook sdk 作为项目。单击确定。

创建 facebook 登录应用程序

一切都完成后,您可以运行 SDK 附带的示例或创建您自己的应用程序。 为了登录,您需要调用 openActiveSession 方法并实现其回调。 它的语法如下 −

// start Facebook Login
Session.openActiveSession(this, true, new Session.StatusCallback() {
   
   // callback when session changes state
   public void call(Session session, SessionState state, Exception exception) {
      if (session.isOpened()) {
         // make request to;2 the /me API
         Request.executeMeRequestAsync(session, new Request.GraphUserCallback() {
            
            // callback after Graph API response with user object
            @Override
            public void onCompleted(GraphUser user, Response response) {
               if (user != null) {
                  TextView welcome = (TextView) findViewById(R.id.welcome);
                  welcome.setText("Hello " + user.getName() + "!");
               }
            }
         });
      }
   }
}

意图共享

意图共享用于在应用程序之间共享数据。 在这个策略中,我们不会处理 SDK 的东西,而是让 facebook 应用程序处理它。 我们将简单地调用 facebook 应用程序并将数据传递给共享。 这样,我们就可以在 facebook 上分享一些东西。

Android 提供了意图库来在活动和应用程序之间共享数据。 为了将其用作分享意图,我们必须将分享意图的类型指定为 ACTION_SEND。 它的语法如下 −

Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);

接下来您需要定义要传递的数据类型,然后传递数据。 它的语法如下 −

shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Hello, from tutorialspoint");
startActivity(Intent.createChooser(shareIntent, "Share your thoughts"));

除了这些方法之外,还有其他可用的方法可以进行意图处理。 它们在下面列出 −

序号 方法 & 描述
1

addCategory(String category)

此方法向意图添加一个新类别。

2

createChooser(Intent target, CharSequence title)

用于创建 ACTION_CHOOSER Intent 的便捷函数

3

getAction()

此方法检索要执行的一般操作,例如 ACTION_VIEW

4

getCategories()

该方法返回意图中所有类别的集合和当前的缩放事件

5

putExtra(String name, int value)

此方法将扩展数据添加到意图。

6

toString()

此方法返回一个字符串,其中包含此对象的简明、人类可读的描述


示例

这是一个示例,展示了如何使用 IntentShare 在 facebook 上共享数据。 它创建了一个基本应用程序,允许您在 facebook 上分享一些文本。

要试验这个示例,您可以在实际设备或模拟器中运行它。

步骤 描述
1 您将使用 Android Studio 在 com.example.sairamkrishna.myapplication 包下创建一个 Android 应用程序。
2 修改 src/MainActivity.java 文件添加必要的代码。
3 修改 res/layout/activity_main 以添加相应的 XML 组件。
4 运行应用程序并选择一个正在运行的 android 设备并在其上安装应用程序并验证结果。

以下是修改后的主活动文件MainActivity.java的内容。

package com.example.sairamkrishna.myapplication;

import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;

import android.widget.Button;
import android.widget.ImageView;

import java.io.FileNotFoundException;
import java.io.InputStream;

public class MainActivity extends AppCompatActivity {
   private ImageView img;

   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      img=(ImageView)findViewById(R.id.imageView);
      Button b1=(Button)findViewById(R.id.button);

      b1.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            Intent sharingIntent = new Intent(Intent.ACTION_SEND);
            Uri screenshotUri = Uri.parse("android.
            resource://comexample.sairamkrishna.myapplication/*");
            
            try {
               InputStream stream = getContentResolver().openInputStream(screenshotUri);
            } catch (FileNotFoundException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
            }

            sharingIntent.setType("image/jpeg");
            sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
            startActivity(Intent.createChooser(sharingIntent, "Share image using"));
         }
      });
   }
}

以下是 res/layout/activity_main.xml 的修改内容。

In the below code abc indicates the logo of tutorialspoint.com
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
   xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools" 
   android:layout_width="match_parent"
   android:layout_height="match_parent" 
   android:paddingLeft="@dimen/activity_horizontal_margin"
   android:paddingRight="@dimen/activity_horizontal_margin"
   android:paddingTop="@dimen/activity_vertical_margin"
   android:paddingBottom="@dimen/activity_vertical_margin" 
   tools:context=".MainActivity">
   
   <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/textView"
      android:layout_alignParentTop="true"
      android:layout_centerHorizontal="true"
      android:textSize="30dp"
      android:text="Facebook share " />
      
   <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Tutorials Point"
      android:id="@+id/textView2"
      android:layout_below="@+id/textView"
      android:layout_centerHorizontal="true"
      android:textSize="35dp"
      android:textColor="#ff16ff01" />
      
   <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/imageView"
      android:layout_below="@+id/textView2"
      android:layout_centerHorizontal="true"
      android:src="@drawable/abc"/>
   
   <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Share"
      android:id="@+id/button"
      android:layout_marginTop="61dp"
      android:layout_below="@+id/imageView"
      android:layout_centerHorizontal="true" />
      
</RelativeLayout>

以下是 AndroidManifest.xml 文件的内容。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.example.sairamkrishna.myapplication" >
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:theme="@style/AppTheme" >
      
      <activity
         android:name=".MainActivity"
         android:label="@string/app_name" >
         
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
         
      </activity>
   </application>
</manifest>

让我们尝试运行您的应用程序。 我假设您已将实际的 Android 移动设备与您的计算机连接起来。要从 Android Studio 运行应用程序,请打开项目的活动文件之一,然后单击工具栏中的 Run Eclipse 运行图标 图标。在启动您的应用程序之前,Android Studio 将显示以下窗口以选择您要运行 Android 应用程序的选项。

Android Facebook 教程

选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 −

Android Facebook 教程

现在只需点击按钮,您就会看到共享提供商列表。

Android Facebook 教程

现在只需从该列表中选择 facebook,然后写任何消息。 如下图所示 −

Android Facebook 教程