I'd like to display a face up deck of 52 cards in an Android app. I have the png/svg/bitmap files and the xml layout. I'm unsure of the settings necessary that will cause the app to resize the images to fit the screen the images are being displayed on. I've attached a mockup image of what I am trying to do. Any pointers to the right documentation to help clear this up for me? 
Displaying Deck of Cards on Android's Different Screen Sizes
465 Views Asked by Auburnate At
1
There are 1 best solutions below
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in ANDROID-GRIDLAYOUT
- Cannot resolve symbol 'GridLayout'
- Error while downloading GridLayout in Android Studio
- problem with displaying grid layout while app has different theme than system
- How to adjust empty cell in grid layout in android studio?
- How to display both the cardviews of equal sizes?
- Android GridLayout: Avoiding "double margins" on rows of buttons
- Grid Layout in android studio giraffe making 9 columns even though column count given is 3
- Vertical grid with different cells in Compose
- How can I make a RecyclerView with 2 columns with the contents attached to the sides of the RecyclerView?
- grid layout and cardview not showing anything, android studio
- How do I stop the background image from stretching the last row and column of cells in my nested scrollable GridLayout?
- How to place scroll view in between grid layout
- Which element is better for build dynamic part of layout?
- How to set a column width relative with the GridLayout width?
- How to create a Baccarat trend like graph in Android?
Related Questions in XML-LAYOUT
- Android custom spreadsheet design
- Render problem in layout xml - Android Studio
- How do I resolve the 'missing xml-layout' error in Android?
- How to import AndroidViewBinding in jetpack compose
- How to add chip to edit text in Android Studio
- How to include an outer XML layout in Android
- Setting color of marked text of textfield
- Layout in Android Emulator looks different as compared to the layout file
- Update to Constraint-Layout 2 destroys working layouts
- Android: RelativeLayout disables clickable Imageview button
- What is the shortcut for switching XML view?
- Make view scroll out of the window (Like Twitter profile layout) android xml layout
- Android Studio 3.6 Canary 12 XML layout doesn't resolve
- How to Place a Button below a ListView in a Scrollable Activity?
- Custom view onTouch breaking onTouch in other views if added using XML layout
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?
It depends on how you build the layouts. But essentially you should look into using
displayMetrics:How to get screen display metrics in application class
You can use that to determine the size (width/height) of the screen.
You could also use nested, weighted
LinearLayouts:How to set layout_weight attribute dynamically from code?
There might be warnings about it being "slow" - but with this type of situation, it's unlikely to be noticeable.