收藏夹整理-Android零碎知识
- 设置Activity全屏与不全屏
http://blog.sina.com.cn/s/blog_4f1c99de0100v3an.html
无标题栏:requestWindowFeature(Window.FEATURE_NO_TITLE);
全屏:getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); - android开发小实例
http://blog.csdn.net/so1127/article/details/8588583
- android 利用superuser编写使用root权限的app及修改CPU governor
http://blog.csdn.net/myarrow/article/details/7918456
- Android 程序中禁止屏幕旋转和重启Activity
http://www.linuxidc.com/Linux/2011-06/37768.htm
android:screenOrientation Configuration.ORIENTATION_LANDSCAPE - Android 文件读写操作总结
http://blog.csdn.net/ztp800201/article/details/7322110
- Android定时任务
http://www.cnblogs.com/lovelili/archive/2012/05/10/2493555.html
AlarmManager - Android的手势识别
http://www.2cto.com/kf/201110/109480.html
GestureDetector - Android zip文件压缩解压缩
http://www.oschina.net/code/snippet_4873_4142