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
| What is objected orientated programming? | |
| "Object oriented programming is a technique of writing code that encapsulates complexity by enumerating data structures with an intrinsic implementation so that they can generally interface." |
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 void copyFile(String fromPath, String fileName, int file) { | |
| InputStream in = null; | |
| OutputStream out = null; | |
| try { | |
| in = getResources().openRawResource(file); | |
| out = new FileOutputStream(new File(fromPath, fileName)); | |
| byte[] buffer = new byte[1024]; | |
| int read; | |
| while ((read = in.read(buffer)) != -1) { | |
| out.write(buffer, 0, read); |
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
| .DS_Store | |
| # built application files | |
| *.apk | |
| *.ap_ | |
| # files for the dex VM | |
| *.dex | |
| # Java class files |
NewerOlder