SharedConstants.java :  » UnTagged » and-the-word » net » bible » android » Android Open Source

Android Open Source » UnTagged » and the word 
and the word » net » bible » android » SharedConstants.java
package net.bible.android;

import java.io.File;

import android.os.Environment;

public class SharedConstants {

    /**
     * Forms storage path
     */
    public static final String MODULE_PATH = getModulePath();

    /**
     * Identifies the location of the form used to launch form entry
     */
    public static final String FOLDERPATH_KEY = "FOLDER_PATH";
    
    
    public static final int APPLICATION_THEME =  android.R.style.Theme_Light;
    
    static private String getModulePath() {
    File sdcard = Environment.getExternalStorageDirectory();
      return sdcard+"/jsword";
    }
    
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.