How can I create global variable keep remain values around the life cycle of the application regardless which activity running.
Use SharedPreferences to store and retrieve global variables.
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this); String userid = preferences.getString("userid", null);