In My Application i stored the data in to the One class said name as abc. in this class there are only getter setter methods available. I am going to store the String array in to that class by getter setter method. So it is Possible that from other activity to fetch all available values that are inserted in to that class ??
If yes then let me know.
And if no then how it is possible ?
In My Application i stored the data in to the One class said name
Share
Yes we can do this.Make those functions public and you can use them using object of the corresponding class.Also you can make them static(but not recommended) and use them using class name itself.They are made for this purpose only.