There are a lot of similar questions on StackOverfow but they don't solve my problem.
The task is to process in Service intents sent with default share mechanism (ACTION_SEND) from different applications.
But as far as ACTION_SEND
is an activity action we have to pick up intent in activity and broadcast it to service. And it will be perfect if this activity will be invisible to the user.
I've researched a lot and have tried many solutions already.
First step of making activity invisible belongs to activity style.
I've tried this values.
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:theme="@android:style/Theme.Translucent"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
Also i"ve tried to create a custom theme.
<style name="Theme.Transparent" parent="android:Theme"> <item name="android:windowIsTranslucent">true</item> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:windowContentOverlay">@null</item> <item name="android:windowNoTitle">true</item> <item name="android:backgroundDimEnabled">true</item> </style>
How the activity in AndroidManifest.xml looks like.
<activity android:name="xxx.xxx.activities.HandleShareIntentActivity" android:theme="@style/Theme.Transparent" android:noHistory="true" android:excludeFromRecents="true" android:label="@string/title_activity_handle_share_intent"> <intent-filter> <action android:name="com.google.android.gm.action.AUTO_SEND"/> <action android:name="android.intent.action.SEND"/> <action android:name="android.intent.action.SEND_MULTIPLE"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="com.google.android.voicesearch.SELF_NOTE"/> <data android:mimeType="*/*"/> </intent-filter> </activity>
Activity code. No
setContentView()
.finish()
inonCreate()
.public class HandleShareIntentActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); startService(new Intent(this, xxxService.class).putExtra( Constants.ACTION_SHARE_KEY, getIntent())); finish(); } }
On Nexus 5, android 4.4.4 I do have black screen blink while handling any share event.
Any solutions?
Use
Theme.NoDisplay
.