HI, All
I'd like to receive by the app files of some kinds:
PDF, MS Office, images are almost OK (some *.doc? and *.xls? not always can be opened by MS Office, but always opened by other viewers\printers).
But no .txt files are filtered (to be captured). What's wrong ?
I'd like to receive by the app files of some kinds:
B4X:
AddActivityText(Main,
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
<data android:mimeType="text/*" />
<data android:mimeType="application/pdf" />
<data android:mimeType="application/msword" />
<data android:mimeType="application/vnd.openxmlformats-officedocument.wordprocessingml.document" />
<data android:mimeType="application/vnd.ms-excel" />
<data android:mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
</intent-filter>)
PDF, MS Office, images are almost OK (some *.doc? and *.xls? not always can be opened by MS Office, but always opened by other viewers\printers).
But no .txt files are filtered (to be captured). What's wrong ?