I am having two activities in my application. I want to pass tha array of String from one activity to another.. How to pass this values from activity to activity?
Its very simple, make that variable static & make one public static method in that class like
public static getArray() { return array; }
Now access this method from another activity, where you want to access it.