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 :

https://github.com/jaydeepw/poly-picker


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -