22 lines
621 B
Java
22 lines
621 B
Java
package com.huantansheng.easyphotos.constant;
|
|
|
|
/**
|
|
* Code常量
|
|
* Created by huan on 2017/10/19.
|
|
*/
|
|
|
|
public class Code {
|
|
//相机请求码
|
|
public static final int REQUEST_CAMERA = 11;
|
|
//权限请求码
|
|
public static final int REQUEST_PERMISSION = 12;
|
|
//预览activity请求码
|
|
public static final int REQUEST_PREVIEW_ACTIVITY = 13;
|
|
//请求应用详情
|
|
public static final int REQUEST_SETTING_APP_DETAILS = 14;
|
|
//拼图activity请求吗
|
|
public static final int REQUEST_PUZZLE = 15;
|
|
//拼图选择activity请求吗
|
|
public static final int REQUEST_PUZZLE_SELECTOR = 16;
|
|
}
|