ndileber官方网站 (戳这里dileber.dreamsoso.com)
学习google的MVP框架,来重构dileber,包含很多实用工具。
dileber 包含了网络框架Retrofit ,并对其进行了封装,支持cookie,并对cookie失效进行了处理。
实用工具1.BottomBar用来创建菜单栏使用如下
mBar= (BottomBar) findViewById(R.id.bar); mBar.addItem(new BottomBarTab(this,R.string.home2,BottomBarTab.TYPE_FONT)). addItem(new BottomBarTab(this,R.string.bubbles,BottomBarTab.TYPE_FONT)). addItem(new BottomBarTab(this,R.string.newspaper,BottomBarTab.TYPE_FONT)). addItem(new BottomBarTab(this,R.string.cogs,BottomBarTab.TYPE_FONT));
mBar.setOnClickItemMenu(new BottomBar.OnClickItemMenu() { @Override public void onClickItem(int position) { } });
教程如下:
android开发(如何开发一个可以维护的好项目):一 、定义基类
开发一个好项目:二、actvity简便跳转,创建菜单按钮,正确使用fragment
android开发(如何开发一个可以维护的好项目):四 、项目结构
开发一个好项目:五、创建数据源,创建网络数据Service和网络数据源
开发一个好项目:七、创建Contract类,连接presenter和view
Android 框架Dileber :一、ActivityManager的使用
Android 框架Dileber :四、SelectDialog的使用