Home is the main Register screen which user sees right after Login. There you control the overall flow of application and navigation to different registers. This also setups different background services which need to run for optimized working of app. This also starts FormSyncer service.
To start a Home screen you just need to implement goToHome() in your login activity as mentioned in Login and navigation is taken care of by core app. Now you need two things.
- Create a view or layout for your Home as done here
- Create an Activity extending NativeHomeActivity from core app. This would take care all background and sync services. Find a working example here
The Home screen here represent 4 registers each having a different type of service. Following are main components of Home
- App logo .. TBD How to change the logo without code
- Unsynced forms count - Shows the data entries which have not been submitted to server yet
- Register - Explained in detail below
- Non Register modules - Any additional components which do not follow the standard register layout.
Register
A register is a class im core app and is the main component which controls the naviation to different services and this is the most important part where you have to provide the implementation. Following are main components of register which must be provided when initializing Home
- Permission or Role : Which permission or role of user should be checked to allow him see this view. TBD role
- Container Id : The id of register main Layout or container. This is to control visibility of register
- Register Button Id : The id on button which implements the navigation on click event. This allows forwarding all onclick events to custom listener
- Register Click Listener : The onClickListener for this register
- Register Count Views : The badges which display counts for registers
- Each Register count view has following components
- View Id : This is the id of TextView which is display for count
- Table : Which table it displays data from. This is the bindtype where data is managed for given beneficiary. Read more about Bind Types.
- Each Register count view has following components
Add Comment