Back to project page android-mvc-framework.
The source code is released under:
Apache License
If you think the Android project android-mvc-framework listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.android_mvc.framework.activities; /*from w w w.j ava 2 s.c om*/ import com.android_mvc.framework.controller.action.ActionResult; import com.android_mvc.framework.controller.validation.ActivityParams; import com.android_mvc.framework.ui.menu.OptionMenuBuilder; /** * ??????????????????????????????????????????????????? * ???Activity???MapActivity???Activity????????????????????????????????????? * ????????????????????????????????????????????????????????????????????? * @author id:language_and_engineering * */ public interface IBaseActivity { /** * UI????????????????????????????????????????????? */ public boolean requireProcBeforeUI(); /** * UI???????????????????????????????? * requireProcBeforeUI() ???true??????????????????????? * ???????????UI???????????????????????????????????????? * ???????????????????????????????????UI?????????????????????????????????????????????? */ public void procAsyncBeforeUI(); /** * UI??????????? * ????????????????????????????? */ public void defineContentView(); /** * ????????????????? */ public OptionMenuBuilder defineMenu(); /** * UI????????????????????????????? */ public void afterViewDefined(); /** * ?????????????????????????????????????????????????????????? */ public ActivityParams toParams(); /** * BL??????????????????? * BL?????????????????? */ public void afterBLExecuted( ActionResult ares ); }