I know I've gotten this to work on projects before, but for whatever reason, when I try to put dimensions into 'values-sw360dp', screens with a width >= 360dp aren't picking up on those dimens, they're reverting back to the regular 'values' folder. Any ideas why? If you need more information, feel free to ask.
Thank you for your time.
Edit: method for getting screen resolution: (Bionic came out to 360x640dp)
Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
Log.d("Screen width(px)", width+","+height);
float density = getResources().getDisplayMetrics().density;
Log.d("Screen density", density+"");
float widthDp = width / density;
float heightDp = height / density;
Log.d("Screen width(dp)", widthDp+","+heightDp);