i am struck with passing String array from one activity to another using intent. while passing only a String from two activities, its work clear. but whenever i tried to access string array i am getting force close error. can any one guide me to rectify the problem.
Share
You can use just the
Intent.setExtra(String, Serializable)method. It accepts anySerializableobject. If that does not work, please attach results from yourLogCat, “Closed unexpectedly” just means your app failed,LogCattells why it failed.