Search found 3 matches
Re: ACTION_SEND with Uri in dataHello, I know that AndFTP has defined a special Intent for uploading files using the ACTION_PICK action and a custom data type. My question is if you'd agree to implement an Intent that would be coherent with how Android handles sending content through email, i.e. with action ACTION_SENDTO, specifyi...
Re: ACTION_SEND with Uri in dataI experimented with the idea and found out that instead of ACTION_SEND, one would need to use ACTION_SENDTO, since intent-filters for ACTION_SEND do not interprete the data. The following code: intent = new Intent(android.content.Intent.ACTION_SENDTO); intent.setData(android.net.Uri.parse("ftp://use...
ACTION_SEND with Uri in dataHello, in my application users can specify an FTP URI to upload a data file. Currently I handle the upload internally and that works well. But since only a tiny percentage of users need this feature, I plan to remove the ftp code, and call an external intent. I would like my users to be able to choo...
|