It depends on what settings you're talking about.
Width
and Height
sounds like properties that are only relevant to the View part of your project, and should thus be stored within it. Xml file location
sounds more like a Model concern.
When developing in Java (which I quite rarely do...) I tend to set up a class named Settings
in which I store whatever I need as private fields, with getters and/or setters where it's needed. In an MVC pattern, I'd have one settings class in each section, and (if necessary, but rather not) one "global" settings class. But if you're concerned with pattern conformity, make sure that each setting is only available where it's needed.