根据android文档,我们绝对可以从活动中的其他应用程序接收数据,如链接所示。
https://developer.android.com/training/sharing/receive.html
所以我尝试了这个并且它完美地工作,但我特别喜欢我不希望活动来到前台。我希望服务而不是活动接收意图。
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service android:name=".BackgroundPresentation"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</service>
<activity android:name=".MainActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
</application>
但不知怎的,我无法接受服务意图,因为它似乎是android:launchMode = singleTask仅对活动有效。
OnNewIntent适用于活动,如下所示
protected void onNewIntent(Intent intent) {
Log.e(TAG, "------->NewIntent is also called");
super.onNewIntent(intent);
setIntent(intent);//must store the new intent unless getIntent() will return the old one
// Get intent, action and MIME type
String action = intent.getAction();
String type = intent.getType();
Log.d(TAG, "onCreate: intent is " + intent.getStringExtra(Intent.EXTRA_TEXT));
}
有人可以建议我可以从服务中的其他应用程序接收意图/数据。 ?