I want to develop a game but I'm not sure about the sizes of the pics. I checked the app after I finished one animation on my phone and on my emulator; the pics changed their size by themselves. Then should i make the same pic with different size for each folder on one pic with the same size and put it in each of the folders. thanks!
should i make different images for each folder in an android application?(hdpi,mdpi,ldpi)
302 Views Asked by Baruch At
1
There are 1 best solutions below
Related Questions in SIZE
- can you use c code to read a .txt file size?
- Hiding overflowing element based on its height
- I want to drag an image to my pdf file using itext java
- MySQL error: The maximum column size is 767 bytes
- Increase the maximum size of char array
- Random double free or invalid next_size
- Java Swing JPanel size not working
- Reduce apk size with combine java files
- 1MiB = 1024KiB = 2^10. Nonetheless, why not use just 1000 byte instead 1024 to calculate size?
- Is possible to set hadoop blocksize 24 MB?
- Swift - Checking size of UIImageView
- Objective C - bold and change string text size for drawing text onto pdf
- Predictionio very large task size
- Wordpress select and crop in plugin
- Angular : get Dimension from Base64 Image
Related Questions in SPRITE
- How to check collision if only bottom half of the sprite matters (think of a cherry with a stem)
- Removing sprite when Touched
- how to draw infinite amount of sprites?
- How to remove Sprite/Object from ArrayList?
- How do I remove Sprites when they go on a specific position?
- Cocos2D 2.x: Running CCWave action makes sprite disappear
- How to change Sprite texture to Animation
- How to create Sprite with animation?
- How to shoot infinite bullets in game coded in Python?
- Rotation and getBounds() in Phaser
- How to get subImages from a sprite sheet with different sprite sizes?
- Error using sprite module in python 3.1
- How to put a sprite in Unity5 without bugs?
- Setting swipe event to a sprite
- Java Game Development- Sprites colliding?
Related Questions in IMAGE
- Add image to JCheckBoxMenuItem
- Display images on Django Template Site
- How to resize images with PHP PARSE SDK
- Animation in Java on top of JPanel
- Slow performance on ipad erasing image
- What are the pros and cons of the picture element?
- Carrierwave file upload with different file types
- How to use annotorious with angular
- Images not showing when uploaded to server
- ImageView doesn't show up
- Image Resizing adjusts ratio
- Displaying bitmap image on Android (OpenCV)
- Class 'Imagick' not found - PHP and Windows
- Image position - randomly select position
- Replace image 1 with image 2 after 5 sec
Related Questions in HDPI
- Netbeans 8.2 with jdk 9
- How to classify Android Devices based on DPI values?
- Retina/high-DPI custom cursor in Java?
- Galaxy S screen DPI
- Android scale image for XXHDPI
- layout not scaling in hdpi devices
- Use HDPI Resources on Kindle Fire
- How to define a android drawable folder
- Retina (HDPI) KineticJS sprites
- Wrong layout is used on AVD of WVGA854 and 160dpi
- should i make different images for each folder in an android application?(hdpi,mdpi,ldpi)
- Android HDPI devices with irregular layouts
- Canvas Bitmap drawing and Screen-Density
- D2D1 has obvious aliasing under high DPI
- How To Properly Use Drawable Folder Eclipse?
Related Questions in MDPI
- how to distinguish two different android mdpi phones
- Galaxy S screen DPI
- Wrong layout is used on AVD of WVGA854 and 160dpi
- should i make different images for each folder in an android application?(hdpi,mdpi,ldpi)
- Android, mdpi density but different screens
- hdpi device choosing mdpi images
- Android: Optimize for high-dpi devices only but still support (small- and) medium-dpi screens
- drawable-mdpi folder for handsets and tablets
- HDPI, LDPI, MDPI
- Android icons for different displays and screen densities
- 165 ppi resolution device comes under mdpi or hdpi
- Different screen size layout
- android picks wrong image from drawable folder
- do i have to be specific with hdpi and mdpi?
- Ensuring sprites are visible on Android
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You don't have to, but it can be useful: sometimes it's better to use a simpler image at small resolutions, and that's where the different densities are helpful.
It also allows more fine-grained control of scaling: if you only provide a hdpi version, a lot of detail can be lost if it has to scale that image significantly. By providing a ldpi version, you can provide a clean base picture which won't need to be scaled as much; resulting in fewer potential scaling artifacts (but unless the other versions are cleaned up a bit, you probably won't see much of a difference in the end).