Home | History | Annotate | Download | only in android
      1 /*
      2  * Copyright (C) 2011 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package com.android;
     18 
     19 /**
     20  * Generic Android Constants.
     21  */
     22 public class AndroidConstants {
     23 
     24     /** Default anim resource folder name, i.e. "anim" */
     25     public final static String FD_RES_ANIM = "anim"; //$NON-NLS-1$
     26     /** Default animator resource folder name, i.e. "animator" */
     27     public final static String FD_RES_ANIMATOR = "animator"; //$NON-NLS-1$
     28     /** Default color resource folder name, i.e. "color" */
     29     public final static String FD_RES_COLOR = "color"; //$NON-NLS-1$
     30     /** Default drawable resource folder name, i.e. "drawable" */
     31     public final static String FD_RES_DRAWABLE = "drawable"; //$NON-NLS-1$
     32     /** Default interpolator resource folder name, i.e. "interpolator" */
     33     public final static String FD_RES_INTERPOLATOR = "interpolator"; //$NON-NLS-1$
     34     /** Default layout resource folder name, i.e. "layout" */
     35     public final static String FD_RES_LAYOUT = "layout"; //$NON-NLS-1$
     36     /** Default menu resource folder name, i.e. "menu" */
     37     public final static String FD_RES_MENU = "menu"; //$NON-NLS-1$
     38     /** Default menu resource folder name, i.e. "mipmap" */
     39     public final static String FD_RES_MIPMAP = "mipmap"; //$NON-NLS-1$
     40     /** Default values resource folder name, i.e. "values" */
     41     public final static String FD_RES_VALUES = "values"; //$NON-NLS-1$
     42     /** Default xml resource folder name, i.e. "xml" */
     43     public final static String FD_RES_XML = "xml"; //$NON-NLS-1$
     44     /** Default raw resource folder name, i.e. "raw" */
     45     public final static String FD_RES_RAW = "raw"; //$NON-NLS-1$
     46 
     47     /** Separator between the resource folder qualifier. */
     48     public final static String RES_QUALIFIER_SEP = "-"; //$NON-NLS-1$
     49 
     50 }
     51