Could someone help me implementing this Java code in my B4A Project:
B4A ContentResolver doesn't supports the method openInputStream(uri)
And the ContentProvider doesn't results TableData, it results the Bitmap directly.
B4X:
InputStream istr = contentResolver.openInputStream(uri);
BufferedInputStream buf_istr = new BufferedInputStream(istr, 8192);
Bitmap bm = BitmapFactory.decodeStream(buf_istr);
B4A ContentResolver doesn't supports the method openInputStream(uri)
And the ContentProvider doesn't results TableData, it results the Bitmap directly.