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
Post a Comment