...
If you have already have an OpenSRP client implementation and you want to migrate to the new form technology the procedure for doing so is as follows:
The new form loading involves preloading of Fragments inside a viewpager, so all Activities should extend android.support.v7.app.ActionBarActivity instead of Activity
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
public abstract class SecuredActivity extends ActionBarActivity { // class specific code here } |
...