如何使用android手机拍照

来源:互联网 发布:linux cp 返回值 编辑:程序博客网 时间:2024/04/28 20:02

这个是拍照相关的资料贴。

http://www.eoeandroid.com/thread-35007-1-1.html


A unique aspect of the Android system design is that any application can start another application’s component. For example, if you want the user to capture a photo with the device camera, there's probably another application that does that and your application can use it, instead of developing an activity to capture a photo yourself. You don't need to incorporate or even link to the code from the camera application. Instead, you can simply start the activity in the camera application that captures a photo. When complete, the photo is even returned to your application so you can use it. To the user, it seems as if the camera is actually a part of your application.