📅  最后修改于: 2021-01-05 05:37:08             🧑  作者: Mango
Android允许您的应用程序连接到Twitter,并在Twitter上共享数据或任何类型的更新。本章是关于将twitter集成到您的应用程序中。
您可以通过两种方式集成Twitter和从应用程序中共享某些内容。这些方式在下面列出-
这是与Twitter连接的第一种方式。您必须注册您的应用程序,然后接收一些应用程序ID,然后您必须下载twitter SDK并将其添加到您的项目中。步骤在下面列出-
在dev.twitter.com/apps/new中创建一个新的twitter应用程序,并填写所有信息。它显示如下-
现在,在设置选项卡下,更改访问权限以读取,写入和访问消息并保存设置。它显示如下-
如果一切正常,您将收到包含机密信息的消费者ID。只需复制应用程序ID并将其保存在某处即可。如下面的图片所示-
在此处下载twitter sdk。将twitter4J jar复制到项目libs文件夹中。
一切完成后,您可以运行twitter 4J示例,可以在此处找到。
为了使用twitter,您需要实例化twitter类的对象,这可以通过调用静态方法getsingleton()来完成。其语法如下。
// The factory instance is re-usable and thread safe.
Twitter twitter = TwitterFactory.getSingleton();
为了更新状态,您可以调用updateStatus()方法。其语法如下-
Status status = twitter.updateStatus(latestStatus);
System.out.println("Successfully updated the status to [" + status.getText() + "].");
意向共享用于在应用程序之间共享数据。在这种策略下,我们将不处理SDK内容,而由twitter应用程序处理。我们将简单地调用twitter应用程序并将数据传递给共享。这样,我们可以在Twitter上分享一些东西。
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"));
除了这些方法外,还有其他允许意图处理的方法。它们在下面列出-
Sr.No | Method & description |
---|---|
1 |
addCategory(String category) This method add a new category to the intent. |
2 |
createChooser(Intent target, CharSequence title) Convenience function for creating a ACTION_CHOOSER Intent |
3 |
getAction() This method retrieve the general action to be performed, such as ACTION_VIEW |
4 |
getCategories() This method return the set of all categories in the intent and the current scaling event |
5 |
putExtra(String name, int value) This method add extended data to the intent. |
6 |
toString() This method returns a string containing a concise, human-readable description of this object |
这是一个演示使用IntentShare在Twitter上共享数据的示例。它创建了一个基本的应用程序,允许您在Twitter上共享一些文本。
要试验此示例,可以在实际设备或仿真器中运行它。
Steps | Description |
---|---|
1 | You will use Android studio to create an Android application under a package com.example.sairamkrishna.myapplication. |
2 | Modify src/MainActivity.java file to add necessary code. |
3 | Modify the res/layout/activity_main to add respective XML components |
4 | Run the application and choose a running android device and install the application on it and verify the results |
以下是修改后的MainActivity.java的内容。
package com.example.sairamkrishna.myapplication;
import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import java.io.FileNotFoundException;
import java.io.InputStream;
public class MainActivity extends ActionBarActivity {
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"));
}
});
}
}
以下是xml res / layout / activity_main.xml的修改内容。
以下是AndroidManifest.xml文件的内容。
让我们尝试运行您的应用程序。我假设您已将实际的Android Mobile设备与计算机连接。要从Android Studio运行该应用,请打开您项目的活动文件之一,然后点击运行工具栏中的图标。在启动应用程序之前,Android Studio将显示以下窗口,以选择要在其中运行Android应用程序的选项。
选择您的移动设备作为选项,然后检查将显示默认屏幕的移动设备-
现在,只需点击按钮,您将看到共享提供商列表。
现在,只需从该列表中选择Twitter,然后编写任何消息即可。如下面的图片所示-
现在,只需选择tweet按钮,然后它将被发布在您的Twitter页面上。它显示如下-