如何让我的Android应用程序出现在另一个特定应用程序的共享列表中

时间:2012-06-19 05:51:47

标签: android android-intent filter share

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

这是我的清单文件

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

7 个答案:

答案 0 :(得分:6)

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

Receiving an Implicit Intent

上的

Intents and Filters (Android Developers)

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

<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>

应用程序的名称及其共享内容将帮助我提供更具体的响应。

答案 1 :(得分:6)

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

以下是此代码的结果: enter image description here

  <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

答案 2 :(得分:4)

将此添加到您的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>

this link may help you

答案 3 :(得分:4)

将此代码添加到从应用程序外部共享内容时要首先打开的活动中,在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>

答案 4 :(得分:1)

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

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

不要这样做

    <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。

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

答案 5 :(得分:0)

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

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

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

    答案 6 :(得分:0)

    enter image description here -在“特定活动”中,将以下代码添加到Project 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"));
                }