Introduction - If you have any usage issues, please Google them yourself
Parse the Photoshop the source file (psd), and image data into the the Android SDK Bitmap object. Based on the open source project " java-psd-library" to modify the original project: http://code.google.com/p/java-psd-library/ example: the File psdFile = new File (" / sdcard/11.psd" ) try {Psd psd = new Psd (psdFile) imageView.setImageBitmap (psd.getImage ()) } catch (IOException e) {e.printStackTrace () }