Android Open Source - GeoNote Constants






From Project

Back to project page GeoNote.

License

The source code is released under:

Apache License

If you think the Android project GeoNote listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package geonote.app;
/*from ww  w  .jav  a  2s  .  c om*/
public class Constants {

    /** Standard activity result: operation succeeded. */
    public static final int RESULT_OK = -1;

    /** Standard activity result: operation canceled. */
    public static final int RESULT_CANCELED = 0;

    /** Start of user-defined activity results. */
    public static final int RESULT_FIRST_USER = 1;

    /** activity result: operation request to delete. */
    public static final int RESULT_SAVE_NOTE = 2;

    /** activity result: operation request to delete. */
    public static final int RESULT_DELETE_NOTE = 3;

    public static final int ACTIVITY_NOTE_VIEW = 1;
    public static final int ACTIVITY_LOGIN = 2;
    public static final int ACTIVITY_NOTES_LIST = 3;
    public static final int ACTIVITY_SETTINGS = 4;

    public static final String PREFS_NOTES = "GeoNote.Preferences.V1";
    public static final String PREFS_NOTES_VALUES_JSON = "GeoNote.Preferences.V1.Notes";
    public static final String APP_ID = "e3ec817cadded7a87ea28a89852d8011";
    public static final int CURRENT_NOTIFICATION_ID =0;

}




Java Source Code List

geonote.app.ApplicationTest.java
geonote.app.Constants.java
geonote.app.DownloadMapImageTask.java
geonote.app.GeoFenceWatcherService.java
geonote.app.GooglePlaces.java
geonote.app.NoteInfoWindowAdapter.java
geonote.app.NoteInfo.java
geonote.app.NotesRepository.java
geonote.app.Settings.java
geonote.app.Activity.LoginActivity.java
geonote.app.Activity.MainActivity.java
geonote.app.Activity.MapsActivityIntentHandler.java
geonote.app.Activity.NoteViewActivity.java
geonote.app.Activity.PlusBaseActivity.java
geonote.app.Activity.SettingsActivity.java
geonote.app.Fragments.MapViewFragment.java
geonote.app.Fragments.NoteListFragment.java
geonote.app.Fragments.SettingsFragment.java
geonote.app.Model.PlaceDetails.java
geonote.app.Model.Place.java
geonote.app.Model.PlacesList.java