androidandroid-studiolocalizationdevice-compatibility

How to specify single image according to locale and device screen In Android


My problem statement is I want to develop an application for more than one languages that will support to the multiple devices. How I set the images according to locale and device? I know how to put the single image to multiple devices.

And also know how to set the single image for the different language.But I implemented it separately.Can we do this?


Solution

  • Your first question: How I set the images according to locale and device?

    you can create directory like this I have tested working fine

    drawable-en-sw600dp - 7 inch Tab with English
    -->ic_lan.png

    drawable-hi-sw600dp - 7 inch Tab with Hindi

    -->ic_lan.png

    drawable-hi -normal phone with Hindi

    -->ic_lan.png

    enter image description here