-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidAction.java
More file actions
24 lines (19 loc) · 975 Bytes
/
AndroidAction.java
File metadata and controls
24 lines (19 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.coobbi.android.api;
public class AndroidAction {
//This uses the native camera to take pictures.
public static final String IMAGE_CAPTURE_ANDROID = "ACTION_IMAGE_CAPTURE_ANDROID";
//A simple photo taking function
public static final String IMAGE_CAPTURE = "ACTION_IMAGE_CAPTURE";
//Video recording function
public static final String VIDEO_CAPTURE = "ACTION_VIDEO_CAPTURE";
//Android Notifications
public static final String CREATE_NOTIFICATION = "ACTION_CREATE_NOTIFICATION";
//Get geographic location
public static final String GET_LOCATION = "ACTION_GET_LOCATION";
//play video
public static final String PLAY_VIDEO = "ACTION_PLAY_VIDEO";
public static final String SHARE_MESSAGE = "ACTION_SHARE_MESSAGE";
public static final String CALL_PHONE = "ACTION_CALL_PHONE";
public static final String SEND_SMS = "ACTION_SEND_SMS";
public static final String CAMERA_FLASH = "ACTION_CAMERA_FLASH";
}