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

android - Pass an Serializable object in AIDL -

How to provide Authorization & Authentication using Asp.net, C#? -

How to use Authorization & Authentication in Asp.net, C#? -