摘要: publicclassRecursiveFileObserverextendsFileObserver{ /** Only modification events */ publicstaticint CHANGES_ONLY = CREATE | DELETE | CLOSE_WRITE | MOVE_SELF | MOVED_FROM | MOVED_TO; List mObservers; String mPath; int mMask; publicRecursiveFileObserver(String path){ this(path, ALL_EVENTS); } publi.. 阅读全文
posted @ 2013-09-29 14:27 罗小姿 阅读(438) 评论(0) 推荐(0) 编辑