Menu
  • HOME
  • TAGS

What are the limitation in EditMode for custom views in Android?

android,android-view,android-custom-view,editmode

Custom views should work just fine as long as they only call parts of the view framework, not any application code. That's a good separation to have for views anyway: they should contain view state, not app logic. Typically you only have to use View#isInEditMode if your custom view is...