Home | History | Annotate | Download | only in deviceinfo

Lines Matching refs:configuration

19 import android.content.res.Configuration;
46 Configuration configuration = getContext().getResources().getConfiguration();
47 store.addResult("screen_size", getScreenSize(configuration));
48 store.addResult("smallest_screen_width_dp", configuration.smallestScreenWidthDp);
51 private static String getScreenSize(Configuration configuration) {
52 int screenLayout = configuration.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
55 case Configuration.SCREENLAYOUT_SIZE_SMALL:
59 case Configuration.SCREENLAYOUT_SIZE_NORMAL:
63 case Configuration.SCREENLAYOUT_SIZE_LARGE:
67 case Configuration.SCREENLAYOUT_SIZE_XLARGE:
71 case Configuration.SCREENLAYOUT_SIZE_UNDEFINED: