Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
languagejava
titleSecuredActivity.java
linenumberstrue
public abstract class SecuredActivity extends ActionBarActivity {
	// class specific code here
}

 

...