[Solved] How to access a HashMap from another class


Either make the information available by using statics (not recommended), use some kind of database (could be as simple as a text file) or pass an Intent along with your Activity. A nice tutorial on adding information to an Intent is found here: http://startandroid.ru/en/lessons/complete-list/241-lesson-28-extras-passing-data-using-intent.html

0

solved How to access a HashMap from another class