I\'m developing some Application which allows select image from SD Card, save it into database and set this value for ImageView. I need to know way for converting uri to str
Try this to convert string to uri
String mystring="Hello" Uri myUri = Uri.parse(mystring);
Uri to String
Uri uri; String uri_to_string; uri_to_string= uri.toString();