Question

How to use the setBackgroundDrawable method on tablelayout with an URI?

Was it helpful?

Solution

 public String getRealPathFromURI(Uri contentUri) {
        String[] proj = { MediaStore.Images.Media.DATA };
        Cursor cursor = managedQuery(contentUri, proj, null, null, null);
        int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        return cursor.getString(column_index);
    }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top