android - Sending multiple spinner data to a new window on a button click -


actually working on multiple spinner window , wanted know how send selected spinner elements new window on clicking ok button on existing window

if understand correctly want way send data between activities.

well, easy , right way so, putting intent. so

intent intent = new intent(currentactivity.this, nextactivity.class); intent.putextra("spinnerdata", data); startactivity(intent); 

that should do


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -