`
yunshangbuhe
  • 浏览: 229872 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

android 开机 关机

http://topic.csdn.net/u/20100423/15/34a5ca3d-df13-4056-8e62-55f6c4c5e412.html
1、pc机和平板电脑接入同一个网络 2、在pc机上执行命令:adb connect ip 3、如果连接成功,会提示:connected to ip: port的内容,否则会提示失败。 4、连接成功后,在ddms中可以看到,在adb devices中也可看到。可以执行adb shell命令 5、断开连接请执行:adb disconnect ip命令。   6、测试时,可以通过pc机来查看各个平板的日志信息。

mp3

http://www.iteye.com/topic/767709

java 位运算

http://www.360doc.com/content/06/0803/20/8473_172708.shtml
/** * 判断两个数组是否相等 *  * @param array1 * @param array2 * @return */ boolean equals(int[] array1, int[] array2) { if (array1.length != array2.length) return false; for (int i = 0; i < array1.length; i++)   if (array1[i] != array2[i]) return false; return ...

activity切换特效

如题
1. 文件I/O        Android平台主要通过java.io.FileInputStream和java.io.FileOutputStream这两个类来实现对文件的读写,java.io.File类则用来构造一个具体指向某个文件或者文件夹的对象。        需要注意的是:每个应用程序所在的包都会有一个私有的存储数据的目录,只有属于这个包中的应用程序才有写入的权限,每个包中应用程序的私有数据目录位于 Android系统中的绝对路径/data/data/<package>/目录中,除了私有目录,应用程序还拥有/sdcard目录即 Android设备上的SD卡的写入权限。文件 ...

枚举 java

http://www.cnblogs.com/frankliiu-java/archive/2010/12/07/1898721.html
http://blog.csdn.net/xylary/article/details/1678413

c++ 与java的区别

http://zh.wikipedia.org/zh/%E6%AF%94%E8%BE%83Java%E5%92%8CC%2B%2B
Tiger中的一个重要新特性是枚举构造,它是一种新的Java枚举类型,允许用常量来表示特定的数据片断,而且全部都以类型安全的形式来表示。Tiger 专家、developerWorks 的多产作者 Brett McLaughlin将解释枚举的定义,介绍如何在应用程 ...

launcher 学习

【FF7】共享ADW_Launcher和Launcher2已配置好的Eclipse项目源码文件 http://www.eoeandroid.com/forum-viewthread-tid-52439-fromuid-96842.html

android 事件处理

http://blog.csdn.net/jinhaijian/article/details/6013985
转自 http://forum.xda-developers.com/showthread.php?p=16850588#post16850588 TabletBar Hider Want to use your honeycomb tablet in *true* fullscreen, without that pesky system bar in the way? Now you can! (REQUIRES ROOT!) This app allows you to hide the system bar in landscape mode, where it gets in t ...
http://blog.csdn.net/ujswml/article/details/5642991
Global site tag (gtag.js) - Google Analytics