This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Is RTL | |
| * Check if there RTL characters (Arabic, Persian, Hebrew) | |
| * | |
| * @author Khaled Attia <[email protected]> | |
| * @param String $string | |
| * @return bool | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <activity android:launchMode = ["standard" | "singleTop" | "singleTask" | "singleInstance"] ../> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private class PathFileObserver extends FileObserver{ | |
| static final String TAG="FILEOBSERVER"; | |
| /** | |
| * should be end with File.separator | |
| */ | |
| String rootPath; | |
| static final int mask = (FileObserver.CREATE | | |
| FileObserver.DELETE | | |
| FileObserver.DELETE_SELF | | |
| FileObserver.MODIFY | |
NewerOlder