mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2025-02-20 04:34:21 +01:00
22 lines
863 B
Java
22 lines
863 B
Java
package com.simplemobiletools.gallery;
|
|
|
|
public class Constants {
|
|
public static final String DIRECTORY = "directory";
|
|
public static final String MEDIUM = "medium";
|
|
public static final String GET_IMAGE_INTENT = "get_image_intent";
|
|
public static final String GET_VIDEO_INTENT = "get_video_intent";
|
|
public static final String SET_WALLPAPER_INTENT = "set_wallpaper_intent";
|
|
|
|
// shared preferences
|
|
public static final String PREFS_KEY = "Gallery";
|
|
public static final String IS_FIRST_RUN = "is_first_run";
|
|
public static final String IS_DARK_THEME = "is_dark_theme";
|
|
public static final String SORT_ORDER = "sort_order";
|
|
|
|
// sorting
|
|
public static final int SORT_BY_NAME = 1;
|
|
public static final int SORT_BY_DATE = 2;
|
|
public static final int SORT_BY_SIZE = 4;
|
|
|
|
public static final int SORT_DESCENDING = 1024;
|
|
}
|