Const.java 633 Bytes
package com.dinhcv.lifelogpedometer.utils;

public class Const {

    public static int STEP_GOAL = 10000;
    public static int STEP_SIZE = 75; //cm
    public static final String EMAIL = "email";


    public enum DATA_TYPE{
        ONE_DAY(1),
        ONE_WEEK(2),
        ONE_MONTH(3),
        THREE_MONTH(4),
        SIX_MONTH(5);

        public int value;
        DATA_TYPE(int value){
            this.value = value;
        }
    }

    public enum STEP_TYPE{
        WALKING(1),
        RUNNING(2),
        BIKE(3);

        public int value;
        STEP_TYPE(int value){
            this.value = value;
        }
    }
}