Android Intent Create getCameraIntent(String outputFile)

Here you can find the source of getCameraIntent(String outputFile)

Description

get Camera Intent

License

Apache License

Parameter

Parameter Description
outputFile a parameter

Declaration

public static Intent getCameraIntent(String outputFile) 

Method Source Code

//package com.java2s;
/**/*from  w ww. j  av  a  2 s  .c o m*/
 * Copyright (c) 2013-2014, Rinc Liu (http://rincliu.com).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.File;

import android.content.Intent;

import android.net.Uri;
import android.provider.MediaStore;

public class Main {
    /**
     * @param outputFile
     * @return
     */
    public static Intent getCameraIntent(String outputFile) {
        Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
        intent.putExtra(MediaStore.EXTRA_OUTPUT,
                Uri.fromFile(new File(outputFile)));
        return intent;
    }
}

Related

  1. intentCall(Activity activity, String phoneNumber)
  2. intentDIY(Activity activity, Class classes)
  3. intentDIY(Activity activity, Class classes, Map paramMap)
  4. intentDIY(Activity activity, Class classes, int enterAnim, int exitAnim)
  5. intentDIY(Activity activity, Class classes, Map paramMap, int enterAnim, int exitAnim)
  6. getUrifromIntent(Intent data, Uri outputFileUri)
  7. createContactAppIntent()
  8. sendBroadcast(Context c, Intent i, boolean local)
  9. sendUpdateCallerInfoCacheIntent(Context context)