Auto generate master-detail crud views based on a class in Android -


in same respect orm libraries sugarorm have black-boxed sqlite database operations, there similar library aids in creation of master-detail lists , edit screens based on class?

that is, if have few pojos client or order follows:

class order {     private string foo;     private string bar;     /* .. other members ..*/     public orders() { ... }     /* getters , setters */ } 

and

class client {     private string foo;     private long bar;     /* .. other members ..*/     public client() { ... }     /* getters , setters */ } 

for example, might there method create editview private strings?

well started project on github out in creating android view based on class.

pojomojo


Comments

Popular posts from this blog

java - Intellij Synchronizing output directories .. -

git - Initial Commit: "fatal: could not create leading directories of ..." -