Back to project page JayJayLab-Android-Demo.
The source code is released under:
Apache License
If you think the Android project JayJayLab-Android-Demo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jayjaylab.androiddemo.app.greyhound.util; /*w w w. j a v a2 s . co m*/ /** * Created by jongjoo on 11/28/14. */ public class Constants { public static final String INTENT_FILTER_TAG = "com.jayjaylab.androiddemo.app.greyhound.TAG_SERVICE2ACTIVITY_PATH_RECORDING"; // message ids sent from activity to service public static final int MSG_START_RECORDING = 0; public static final int MSG_PAUSE_RECORDING = 1; public static final int MSG_STOP_RECORDING = 2; public static final int MSG_ASK_RECORDING_STATUS = 3; // message ids sent from service to activity public static final int MSG_ONFINISH_START_RECORDING = 101; public static final int MSG_ONFINISH_PAUSE_RECORDING = 102; public static final int MSG_ONFINISH_STOP_RECORDING = 103; public static final int MSG_NO_GOOGLE_SERVICE = 104; public static final int MSG_ONFINISH_ASK_RECORDING_STATUS = 105; }