最新回答 / 自由的气息
ActionBarDrawerToggle 是 DrawerLayout.DrawerListener实现。和 NavigationDrawer 搭配使用,推荐用这个方法,符合Android design规范。作用:1.改变android.R.id.home返回图标。2.Drawer拉出、隐藏,带有android.R.id.home动画效果。3.监听Drawer拉出、隐藏;做法,参照 NagatitionDrawer Demo。重点在于:/** * When using the ActionBarDr...
2017-03-23
最新回答 / 自由的气息
有几种方案可以考虑:1,普通HTTP/HTTPS协议通讯.2,基于HTTP协议的WEBSERVICE/SOAP方式通讯.3,普通SOCKET方式自定义报文通讯.
2017-03-21
最赞回答 / 喵先生2
private ActionBarDrawerToggle mActionBar;//创建菜单控制开关mActionBar = new ActionBarDrawerToggle(this, mDrawerLayout, new Toolbar(this), R.string.draw_open, R.string.draw_close) { @Override public void onDrawerOpened(View drawerView) { super.onDrawe...
2017-02-20