I’ve got a class that implements Observable. This class is seperate to my activity class. Is it possible to edit views from the Observable class or do all edits have to happen via the activity class?
This class is instantiated as an object in my activity of course.
You can edit the Views of an Activity from any class you want, just pass the correct references to them. And make sure that you make those edits on the main thread of course.