android developer tiny share-20160817

来源:互联网 发布:天津工业大学网络教学 编辑:程序博客网 时间:2024/06/05 06:10

今天讲使用intent打开照相机、录像机的例子。

Camera
Capture a picture or video and return it

To open a camera app and receive the resulting photo or video, use the ACTION_IMAGE_CAPTURE or ACTION_VIDEO_CAPTURE action. Also specify the URI location where you'd like the camera to save the photo or video, in the EXTRA_OUTPUT extra.

Action
    ACTION_IMAGE_CAPTURE or
    ACTION_VIDEO_CAPTURE
Data URI Scheme
    None
MIME Type
    None
Extras
    EXTRA_OUTPUT
        The URI location where the camera app should save the photo or video file (as a Uri object).
When the camera app successfully returns focus to your activity (your app receives the onActivityResult() callback), you can access the photo or video at the URI you specified with the EXTRA_OUTPUT value.

Note: When you use ACTION_IMAGE_CAPTURE to capture a photo, the camera may also return a downscaled copy (a thumbnail) of the photo in the result Intent, saved as a Bitmap in an extra field named "data".

Example intent:

static final int REQUEST_IMAGE_CAPTURE = 1;static final Uri mLocationForPhotos;public void capturePhoto(String targetFilename) {    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);    intent.putExtra(MediaStore.EXTRA_OUTPUT,            Uri.withAppendedPath(mLocationForPhotos, targetFilename));    if (intent.resolveActivity(getPackageManager()) != null) {        startActivityForResult(intent, REQUEST_IMAGE_CAPTURE);    }}@Overrideprotected void onActivityResult(int requestCode, int resultCode, Intent data) {    if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {        Bitmap thumbnail = data.getParcelable("data");        // Do other work with full size photo saved in mLocationForPhotos        ...    }}

For more information about how to use this intent to capture a photo, including how to create an appropriate Uri for the output location, read Taking Photos Simply or Taking Videos Simply.

Example intent filter:

<activity ...>    <intent-filter>        <action android:name="android.media.action.IMAGE_CAPTURE" />        <category android:name="android.intent.category.DEFAULT" />    </intent-filter></activity>

When handling this intent, your activity should check for the EXTRA_OUTPUT extra in the incoming Intent, then save the captured image or video at the location specified by that extra and call setResult() with an Intent that includes a compressed thumbnail in an extra named "data".


Start a camera app in still image mode
 
To open a camera app in still image mode, use the INTENT_ACTION_STILL_IMAGE_CAMERA action.

Action
    INTENT_ACTION_STILL_IMAGE_CAMERA
Data URI Scheme
    None
MIME Type
    None
Extras
    None
Example intent:

public void capturePhoto() {    Intent intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);    if (intent.resolveActivity(getPackageManager()) != null) {        startActivityForResult(intent);    }}

Example intent filter:

<activity ...>    <intent-filter>        <action android:name="android.media.action.STILL_IMAGE_CAMERA" />        <category android:name="android.intent.category.DEFAULT" />    </intent-filter></activity>

Start a camera app in video mode
 
To open a camera app in video mode, use the INTENT_ACTION_VIDEO_CAMERA action.

Action
    INTENT_ACTION_VIDEO_CAMERA
Data URI Scheme
    None
MIME Type
    None
Extras
    None
Example intent:

public void capturePhoto() {    Intent intent = new Intent(MediaStore.INTENT_ACTION_VIDEO_CAMERA);    if (intent.resolveActivity(getPackageManager()) != null) {        startActivityForResult(intent);    }}

Example intent filter:

<activity ...>    <intent-filter>        <action android:name="android.media.action.VIDEO_CAMERA" />        <category android:name="android.intent.category.DEFAULT" />    </intent-filter></activity>


0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 大腿赘肉怎么办 淘宝卖家不举证怎么办 咸鱼收到假货怎么办 伤没钱看病怎么办 steam付款失败怎么办 配偶没有公积金怎么办 玩吃鸡配置不够怎么办 华为AL20黑屏怎么办 华为照片不见了怎么办 电话卡暂停服务怎么办 电脑屏幕居中了怎么办 冰箱霜太多怎么办 qq账号忘了怎么办没有邮箱怎么办 车祸赔不起怎么办对方天天闹怎么办 专家解读有口臭怎么办口气重怎么办 油锅起火时应该怎么办或者怎么办 淘宝买了东西想改地址怎么办怎么办 手机显示程序异常这是怎么办怎么办 钢笔笔尖坏了怎么办 陶瓷刀钝了怎么办 地下城fps低怎么办 床头只能朝西怎么办 钢笔笔尖歪了怎么办 钢笔笔尖漏墨怎么办 被蜈蚣咬了怎么办 信用卡被盗刷了怎么办 练太极拳膝盖痛怎么办 僵尸毛毛虫咬了怎么办 迅雷下载速度慢怎么办 驾驶证换证过期怎么办 发生地震时该怎么办 尿常规潜血十3怎么办 尿酮体弱阳性怎么办 蔡英文当选大陆怎么办 维基百科打不开怎么办 陶瓷刀不快了怎么办 豆浆机刀片钝了怎么办 床头只能向西怎么办 施耐德钢笔漏墨怎么办 被人肉搜索了怎么办 智齿牙龈肿了怎么办