37
<action android:name="android.intent.action.SEND" />     
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />

这是在我的清单文件中

这将使我的应用程序出现在所有应用程序的共享列表中,但我希望我的应用程序出现在另一个特定应用程序的共享列表中,并且我不拥有其他应用程序

4

7 回答 7

18

在从应用程序外部共享内容时首先要打开的活动中添加此代码,在 onCreate() 中调用此方法

private void onSharedIntent() {
    Intent receiverdIntent = getIntent();
    String receivedAction = receiverdIntent.getAction();
    String receivedType = receiverdIntent.getType();

    if (receivedAction.equals(Intent.ACTION_SEND)) {

        // check mime type 
        if (receivedType.startsWith("text/")) {

            String receivedText = receiverdIntent
                    .getStringExtra(Intent.EXTRA_TEXT);
            if (receivedText != null) {
                //do your stuff
            }
        }

        else if (receivedType.startsWith("image/")) {

            Uri receiveUri = (Uri) receiverdIntent
                    .getParcelableExtra(Intent.EXTRA_STREAM);

            if (receiveUri != null) {
                //do your stuff
                fileUri = receiveUri;// save to your own Uri object

                Log.e(TAG,receiveUri.toString());
            }
        }

    } else if (receivedAction.equals(Intent.ACTION_MAIN)) {

        Log.e(TAG, "onSharedIntent: nothing shared" );
    }
}

在清单中添加这个,

 <activity
            android:name="your-package-name.YourActivity">
            <intent-filter>
                <action android:name="android.intent.action.SEND" /> 

                <category android:name="android.intent.category.DEFAULT" />      
                <data android:mimeType="image/*" />
                <data android:mimeType="text/*" />
            </intent-filter>
        </activity>
于 2018-12-23T10:28:56.023 回答
13

为此,您需要知道应用程序正在创建的 Intent 并创建一个 IntentFilter,它将您的应用程序添加到特定列表中。

Intent 和 Filters 上接收隐式 Intent(Android 开发人员)

该应用程序可能使用您可以挂钩的特定操作名称。

<intent-filter . . . >
    <action android:name="com.example.project.SHOW_CURRENT" />
    <action android:name="com.example.project.SHOW_RECENT" />
    <action android:name="com.example.project.SHOW_PENDING" />
    . . .
</intent-filter>

或者它可能正在寻找接受某种类型文件的应用程序。

<intent-filter . . . >
    <data android:mimeType="video/mpeg" android:scheme="http" . . . /> 
    <data android:mimeType="audio/mpeg" android:scheme="http" . . . />
    . . .
</intent-filter>

应用程序的名称及其共享的内容将帮助我给出更具体的回应。

于 2012-06-19T18:10:03.447 回答
13

在此处输入图像描述- 在特定活动中将以下代码添加到您的项目 AndroidManifest.xml 文件中。

     <activity
                android:name=".MainActivity"
                android:theme="@style/Theme.AppCompat.Light.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="text/plain" />
            </intent-filter>
     </activity>

- 将以下代码行添加到您的项目特定活动中。

    Intent intent = getIntent();
    String action = intent.getAction();
    String type = intent.getType();
    if ("android.intent.action.SEND".equals(action) && type != null && "text/plain".equals(type)) {
                Log.println(Log.ASSERT,"shareablTextExtra",intent.getStringExtra("android.intent.extra.TEXT"));
            }
于 2019-03-07T06:26:22.203 回答
8

将此添加到您的 mainefist 文件中

<activity android:name=".ShareActivity">
<intent-filter
    android:label="Share with my app">
    <action android:name="android.intent.action.SEND" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

这个链接可以帮助你

于 2014-03-23T13:01:31.343 回答
8

这对我来说非常适合获取所有网页,我的应用程序可以扫描网页上的 mp3 文件并从中设置警报。当您共享网页时,它会打开我的新 url 活动:

以下是此代码的结果: 在此处输入图像描述

  <activity
        android:name=".NewUrl"
        android:label="@string/title_activity_new_url"
        android:windowSoftInputMode="stateUnchanged">
        <intent-filter>
            <action android:name="android.intent.action.SEND"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:mimeType="text/*"/>
        </intent-filter>
    </activity>

然后要在应用程序中接收链接,我从本教程中获得了一些信息:http: //code.tutsplus.com/tutorials/android-sdk-receiving-data-from-the-send-intent--mobile-14878

于 2016-08-06T01:47:54.000 回答
3

我想在上述答案中添加一些内容。请记住,如果您在一个活动中使用多个类别,您应该放置另一个意图过滤器以防止覆盖。

例如,以下内容将阻止您的应用程序显示在设备的应用程序列表中,因为它不会将其检测为启动器活动。

不要这样做

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".MainActivity">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
      
                <!-- DO NOT DO THIS-->

                <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="*/*" />
            </intent-filter>

        </activity>
    </application>

而是执行以下操作

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".MainActivity">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <!-- USE SEPERATE INTENT FILTER -->

            <intent-filter>
                <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="*/*" />
            </intent-filter>

        </activity>
    </application>

注意:根据您的使用更改 mimeType。

结论:如果您在意图过滤器中使用多个类别,请分别使用它们。

于 2020-10-09T06:47:18.087 回答
1

我会检查是否有您想要使用的此应用程序的任何 API。

如果是这样,您可以通过了解

  • 过滤器的更具体的隐式操作
  • 或者可能添加除 DEFAULT 以外的类别
  • 如果你能找到类似的东西,它就不太可能被其他应用程序看到。

    于 2012-06-19T17:43:32.880 回答