When user open image on gallery on his android mobile he has an option to share this picture via apllications listed on this menu. So, i want to show my app in this share menu and when user click it - my app starts and gets filepath of image to be shared. Now I trying these:
Writing on MyApp-app.xml
<android>
<manifestAdditions><![CDATA[
<manifest android:installLocation="auto">
<application>
<activity android:excludeFromRecents="false">
<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>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
]]></manifestAdditions>
</android>
How to get a filepath of image to use it inside app? I'm trying to write this code on mxml file:
protected function application_preinitializeHandler(event:FlexEvent):void
{
NativeApplication.nativeApplication.addEventListener(
InvokeEvent.INVOKE, onInvoke);
}
private function onInvoke(event:InvokeEvent):void
{
// some code to get filepath of Image
}
adbtool (the command will beadb logcat) to retrieve the Logcat data. To answer your second question, the activity that's launched should receive anIntentthat specifies the path for the image that the user chose in the gallery. – acj Nov 1 '12 at 15:25