├── dmo ├── bin │ ├── classes.dex │ ├── resources.ap_ │ ├── CameraSample.apk │ ├── classes │ │ └── com │ │ │ └── yxiaolv │ │ │ └── camerasample │ │ │ ├── R.class │ │ │ ├── R$id.class │ │ │ ├── R$attr.class │ │ │ ├── R$menu.class │ │ │ ├── R$dimen.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── BuildConfig.class │ │ │ ├── R$drawable.class │ │ │ ├── StickerView.class │ │ │ ├── CameraActivity.class │ │ │ ├── CameraActivity$1.class │ │ │ ├── CameraActivity$2.class │ │ │ ├── CameraActivity$3.class │ │ │ ├── CameraActivity$4.class │ │ │ ├── CameraActivity$5.class │ │ │ ├── CameraActivity$6.class │ │ │ ├── CameraActivity$7.class │ │ │ ├── util │ │ │ ├── BitmapUtil.class │ │ │ └── DisplayUtil.class │ │ │ ├── ShowImageActivity.class │ │ │ ├── CameraActivity$SurfaceViewCallback.class │ │ │ └── StickerView$OnStickerDeleteListener.class │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_sticker_reversal_vertical.png │ │ │ └── ic_sticker_reversal_horizontal.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_sticker_control.png │ │ │ └── ic_sticker_delete.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ ├── dexedLibs │ │ └── android-support-v4-69eb0c37550a0d3dc5dd94798a70482f.jar │ └── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── res │ ├── drawable-hdpi │ │ ├── katong.jpg │ │ ├── ic_launcher.png │ │ ├── ic_sticker_reversal_horizontal.png │ │ └── ic_sticker_reversal_vertical.png │ ├── drawable-xhdpi │ │ ├── hello.jpg │ │ ├── ic_launcher.png │ │ ├── ic_sticker_control.png │ │ └── ic_sticker_delete.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── menu │ │ └── main.xml │ └── layout │ │ ├── show_layout.xml │ │ └── activity_main.xml ├── src │ └── com │ │ └── yxiaolv │ │ └── camerasample │ │ ├── StickerView.java │ │ ├── CameraActivity.java │ │ ├── util │ │ ├── BitmapUtil.java │ │ └── DisplayUtil.java │ │ └── ShowImageActivity.java ├── gen │ └── com │ │ └── yxiaolv │ │ └── camerasample │ │ ├── BuildConfig.java │ │ └── R.java ├── README.md ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project └── AndroidManifest.xml └── README.md /dmo/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes.dex -------------------------------------------------------------------------------- /dmo/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/resources.ap_ -------------------------------------------------------------------------------- /dmo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/ic_launcher-web.png -------------------------------------------------------------------------------- /dmo/bin/CameraSample.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/CameraSample.apk -------------------------------------------------------------------------------- /dmo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /dmo/res/drawable-hdpi/katong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-hdpi/katong.jpg -------------------------------------------------------------------------------- /dmo/res/drawable-xhdpi/hello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-xhdpi/hello.jpg -------------------------------------------------------------------------------- /dmo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dmo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dmo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dmo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dmo/res/drawable-xhdpi/ic_sticker_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-xhdpi/ic_sticker_control.png -------------------------------------------------------------------------------- /dmo/res/drawable-xhdpi/ic_sticker_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-xhdpi/ic_sticker_delete.png -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R.class -------------------------------------------------------------------------------- /dmo/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dmo/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R$id.class -------------------------------------------------------------------------------- /dmo/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dmo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dmo/src/com/yxiaolv/camerasample/StickerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/src/com/yxiaolv/camerasample/StickerView.java -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R$attr.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R$menu.class -------------------------------------------------------------------------------- /dmo/src/com/yxiaolv/camerasample/CameraActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/src/com/yxiaolv/camerasample/CameraActivity.java -------------------------------------------------------------------------------- /dmo/src/com/yxiaolv/camerasample/util/BitmapUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/src/com/yxiaolv/camerasample/util/BitmapUtil.java -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R$dimen.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R$layout.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R$string.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R$style.class -------------------------------------------------------------------------------- /dmo/bin/res/crunch/drawable-xhdpi/ic_sticker_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/res/crunch/drawable-xhdpi/ic_sticker_control.png -------------------------------------------------------------------------------- /dmo/bin/res/crunch/drawable-xhdpi/ic_sticker_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/res/crunch/drawable-xhdpi/ic_sticker_delete.png -------------------------------------------------------------------------------- /dmo/res/drawable-hdpi/ic_sticker_reversal_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-hdpi/ic_sticker_reversal_horizontal.png -------------------------------------------------------------------------------- /dmo/res/drawable-hdpi/ic_sticker_reversal_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/res/drawable-hdpi/ic_sticker_reversal_vertical.png -------------------------------------------------------------------------------- /dmo/src/com/yxiaolv/camerasample/util/DisplayUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/src/com/yxiaolv/camerasample/util/DisplayUtil.java -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/BuildConfig.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/R$drawable.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/StickerView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/StickerView.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$1.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$2.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$3.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$4.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$5.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$6.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$7.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/util/BitmapUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/util/BitmapUtil.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/util/DisplayUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/util/DisplayUtil.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/ShowImageActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/ShowImageActivity.class -------------------------------------------------------------------------------- /dmo/bin/res/crunch/drawable-hdpi/ic_sticker_reversal_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/res/crunch/drawable-hdpi/ic_sticker_reversal_vertical.png -------------------------------------------------------------------------------- /dmo/bin/res/crunch/drawable-hdpi/ic_sticker_reversal_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/res/crunch/drawable-hdpi/ic_sticker_reversal_horizontal.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # stickcamera 2 | Add a sticker to the camera 3 | 4 | 5 | Effect display: 6 | 7 | http://img.blog.csdn.net/20160618165007650 8 | 9 | http://img.blog.csdn.net/20160618165131995 10 | -------------------------------------------------------------------------------- /dmo/bin/dexedLibs/android-support-v4-69eb0c37550a0d3dc5dd94798a70482f.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/dexedLibs/android-support-v4-69eb0c37550a0d3dc5dd94798a70482f.jar -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$SurfaceViewCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/CameraActivity$SurfaceViewCallback.class -------------------------------------------------------------------------------- /dmo/bin/classes/com/yxiaolv/camerasample/StickerView$OnStickerDeleteListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhaiGu/stickcamera/HEAD/dmo/bin/classes/com/yxiaolv/camerasample/StickerView$OnStickerDeleteListener.class -------------------------------------------------------------------------------- /dmo/gen/com/yxiaolv/camerasample/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.yxiaolv.camerasample; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /dmo/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /dmo/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /dmo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CameraSample 5 | Settings 6 | Hello world! 7 | Settings2 8 | 9 | -------------------------------------------------------------------------------- /dmo/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /dmo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dmo/README.md: -------------------------------------------------------------------------------- 1 | Android_Camera_Sample 2 | ===================== 3 | 4 | It is a Camera sample for using Camera class to capture and store to photo album 5 | 6 |

7 | It include as follow:
8 | 1. How to use Android Camera class
9 | 2. How to use surface component
10 | 3. How to handle onPictureTaken callback
11 | 4. How to connect MediaConnent to scan new photo you take. It will show your photo in default album app.
12 | -------------------------------------------------------------------------------- /dmo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /dmo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dmo/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /dmo/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /dmo/src/com/yxiaolv/camerasample/ShowImageActivity.java: -------------------------------------------------------------------------------- 1 | package com.yxiaolv.camerasample; 2 | 3 | import android.app.Activity; 4 | import android.net.Uri; 5 | import android.os.Bundle; 6 | import android.widget.ImageView; 7 | 8 | public class ShowImageActivity extends Activity { 9 | 10 | @Override 11 | protected void onCreate(Bundle savedInstanceState) { 12 | // TODO Auto-generated method stub 13 | super.onCreate(savedInstanceState); 14 | setContentView(R.layout.show_layout); 15 | ImageView show = (ImageView) findViewById(R.id.show); 16 | String path = getIntent().getStringExtra("imagpath"); 17 | show.setImageURI(Uri.parse(path)); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /dmo/res/layout/show_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /dmo/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /dmo/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /dmo/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CameraSample 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /dmo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /dmo/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /dmo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 17 | 18 | 25 | 26 | 27 | 32 | 33 | 37 | 38 | 39 |