I'm trying to understand how layout_width/height when sets to "wrap_content", "goes" together with scaleType? AFAIK, scaleType (let's say 'center_fit') responsible of scaling up or down image size, but when width or height is set to wrap_content, isn't it means that the width & height of the ImageView will be calculated from the image (drawable) size? So why in this situation, the drawable will be scaled at all?
How does scaleType and wrap_content determine ImageView width and height?
396 Views Asked by Eitanos30 At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in IMAGEVIEW
- ImageView doesn't show up
- Image in drawable but still getting error
- Color Filters on Custom Shaped ImageViews
- Change imageview in listview row dynamically
- A view that can be moved and resized on android
- Error with image view when displaying an image by camera capturing
- Scrolling pictures increase (android)
- Image dis-appears on droppping imageview android
- How can I resize a ImageView from my XML?
- Android load image into imageview efficiently
- Android. How can I make an ImageView draw itself as a PNG?
- JavaFX: How can I horizontally center an ImageView inside a ScrollPane?
- Load Image in ImageView from URL stored in JSONString in Android
- android imageloader and imageview scaletype
- Image showing in Android Studio but not on phone
Related Questions in ANDROID-XML
- Android:layout_toLeftOf ~ No resource found
- Android GridLayout cutting off
- Xml auto suggestion does not work for new android design support library widgets
- How can I read the preferences XML file?
- Android studio : Gradle : Attribute ... has already been defined error
- Android xml(layout) used by multiple activity in project
- How to make full size view when using TextureView in android?
- Android ListView :: Scrolling ListView while item is selected causes display problems
- How to make a TextView editable at the click of a button?
- Why XML contents not showing on the app when using FrameLayout in Android
- How to load xml resources to Activity field
- Text view not being filled form ASYNC Task
- Weight for Android textViews
- How to implement a custom actionbar and set a resizable title to it in Android?
- Only allow app to run in default orientation
Related Questions in SCALETYPE
- Align image within imageView to bottom center
- ImageView changes as it gets resized
- ImageView scaleType, crop right and bottom sides
- how to show imageview to full screen using clickableAreaImages library
- Different scale type for place holder and image
- How to resize / scaletype imageview on Android 8.0 Oreo?
- android centerCrop for larger screens, where ImageView width matches parent
- My images shrink when they are at the edge of my display screen - Android
- Android GridView scale type similar to html contain
- Changing Aspect Ratio of the video on Button Click using Surface View like MX player
- How can I resolve OutofMemoryError error? (After Bitmap.createScaledBitmap)
- ScaleType crash while supportFinishAfterTransition()
- ImageView ScaleType.FIT_XY not working with setImageDrawable
- Scale Bitmap maintaining aspect ratio and fitting both width and height
- How does scaleType and wrap_content determine ImageView width and height?
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?
scaleType defines how you want your image to appear in the case that the width and height isn't match / appropriate e.g. fitCenter makes it centered and fit, while fitXY stretches it if it has spaces.