摘要:
[转]国内外优秀Android博客大全,覆盖了国内外大神博客地址,Github地址,是学习Android进阶的首选 本文来自于:http://blog.csdn.net/lang791534167/article/details/46802451 国内: 昵称Github博客介绍 邓凡平 http: 阅读全文
摘要:
Android ADB Server启动失败 启动Android Stdio的时候报如下错误: 1 2 3 4 5 Unable to create Debug Bridge: Unable to start adb server: error: could not install *smartso 阅读全文
摘要:
关于点击Invalidate Caches/Restart禁止插件后,重新加载--Android Studio 1:47:27 Plugin Error Problems found loading plugins: Plugin "Google Analytics Uploader" was no 阅读全文
摘要:
1.MaterialRefreshLayout:上拉加载,下拉刷新。 2.SwipeBackLayout :向右滑动关闭页面 3.banner :强大的图片轮播框架 4.SlidingMenu:侧滑菜单 5.CircleImageView:圆形图片 6.picasso:图片请求框架 7.glide 阅读全文
摘要:
//设置适配 //Top1:获取windowManager管理器 WindowManager windowManager = (WindowManager) getSystemService(WINDOW_SERVICE); //Top2:获取手机默认的显示屏 Display display = w 阅读全文
摘要:
private long mEditTime;//用来记录用户操作的时间 @Overridepublic boolean onKeyDown(int keyCode, KeyEvent event) { exit(); return true;}private void exit(){ //如果超过 阅读全文
摘要:
效果图: 参照鸿洋大神的博客: http://blog.csdn.net/lmj623565791/article/details/46678867 阅读全文
摘要:
1.在Toolbar所在的Activity中使用setSupportActionBar(mToolbar)方法设置ActionBar为当前的Toolbar /** * 使用该方法的注意事项(多次遇到的坑): * 1.设置toolbar的显示UI一定要在setSupportActionBar之前设置, 阅读全文
摘要:
设置toolbar中弹出的menu菜单在toolbar的底部显示<style name="toolbarMenu"> <item name="actionOverflowMenuStyle">@style/OverflowMenuStyle</item></style><style name="Ov 阅读全文
摘要:
在Style中添加代码<!-- 改变toobar图标的颜色为白色 --><item name="android:textColorSecondary">@color/witer</item> 阅读全文