java - startActivity and intercept intent extras -


i'm considering following log in user:

intent intent= new intent(this,dologinactivity.class); intent.putextra("login",mlogin); intent.putextra("password",mpassword); startactivity(intent); 

is secure, or other apps can listen/read intent parameters?

your current approach secure, no other app can listen or read these values.

you using explicit intent [you specify activity required respond intent] , listen class declared in intent. secure.


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -