0 votes
in JQuery by
Is it possible to implement the model–view–controller pattern in Java for Android?

1 Answer

0 votes
by

In Android you don't have MVC, but you have the following:

  • You define your user interface in various XML files by resolution, hardware, etc.
  • You define your resources in various XML files by locale, etc.
  • You extend clases like ListActivity, TabActivity and make use of the XML file by inflaters.
  • You can create as many classes as you wish for your business logic.
  • A lot of Utils have been already written for you - DatabaseUtils, Html.

Related questions

0 votes
asked Jun 23, 2020 in JQuery by AdilsonLima
0 votes
asked Sep 21, 2020 in JQuery by JackTerrance
...