android - Handling URI tasks manually -
i need select image sd card in android application. i'm using uri run device apps below code:
intent photopickerintent = new intent(intent.action_pick); photopickerintent.settype("image/*"); startactivityforresult(photopickerintent, select_photo);
i want know if wise handle uri
tasks above task myself in app or cause trouble this.
yes fine , risk free. incase trying images local storage, library :
Comments
Post a Comment