Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different values folders in android

I am creating different values folders in my app (values, values-ldpi, values-mdpi, values-hdpi, values-xhdpi, values-nodpi, values-w360dp-mdpi). But some devices that belong same category. But having different screen sizes. But I see give font size according to device densities in this the answer provided by @PankajSharma suggest to create folders like-

res/values/dimens.xml     res/values-small/dimens.xml     res/values-normal/dimens.xml     res/values-xlarge/dimens.xml 

I want to know what is the difference b/w my way and the other way? I think the answer provided by @PankajSharma is easy. I also want to know which way is better?

like image 667
John R Avatar asked Jan 22 '14 10:01

John R


People also ask

What is directory structure Android?

All graphics, strings, layouts, and other resource files are stored in the resource file hierarchy under the res directory. res/layout - XML layout files that describe the views and layouts for each activity and for partial views such as list items. res/values - XML files which store various attribute values.


2 Answers

The approach you are using is a valid approach, but a little outdated. From HoneyComb, there is a new way to fix all of this. Your resources folder should now look like this:

enter image description here

Please refer to the link I have posted and familiarize yourself with Smallest Width concept.

Hope this helps :)

EDIT: Adding to this post, try to establish some kind of standardization in your dimens.xml, something like this:

enter image description here

Doing this makes it easier to maintain code, plus it reduces the number of dimen folders. Normally rather than having values-hdpi, values-xhdpi, etc. files like values-sw480dp-xhdpi might have more values to adjust, but then again all of this is contextual.

like image 168
Rakeeb Rajbhandari Avatar answered Oct 07 '22 21:10

Rakeeb Rajbhandari


Create a Single layout for default screens 4.7 inch (hdpi) in layout folder and dimensions in values folder. This is your Superset.

Now let say you want your layouts for 7inch devices. Create values-sw600dp folder for 7inch in Portrait orientation

Now lets say you want your layouts for 10 inch devices Create values-dw720dp folder

NOTE :- For landscape just add "-land" in front of folder names.

Now lets say you have new devices such as Xperia SP (4.7' and XHDPI) and Nexus 5(5" and XXHDPI).

For these, you can create values-xhdpi and values-xxhdpi folders and similary add -land for landscape orientation..

I hope you got the point of how to create folders..

Now your superset is defined in values folder. Most of the dimensions will be used from here only. Now run your app in other devices. Whatever mismatch is occuring just add that specific dimension in their respective values folder

To check from which folder your layouts, images are used, use my trick.

Create five same strings and put in it all the values folders like this :- Default Screen Screen 4.7 XHDPI Screen MDPI Screen

Create five drawable folders, most of them will be already there : - drawable-hdpi, drawable-mdpi, drawable-xhdpi, drawable-xxhdpi, drawable-xxxhdpi Put the screenshots below in their respective folder under the same name

enter image description hereenter image description hereenter image description hereenter image description hereenter image description here

This is how my res folder looks like and i am supporting all the devices from 4.7 screen and above :-

enter image description here

like image 42
Rahul Gupta Avatar answered Oct 07 '22 20:10

Rahul Gupta