Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6208679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:50:56+00:00 2026-05-24T05:50:56+00:00

Im making a game and using surfaceview. I load bitmaps that represent character and

  • 0

Im making a game and using surfaceview.
I load bitmaps that represent character and background and so on.

But HOW do I properly scale it to fit large devices and small devices and other devices?

//Simon

NOTE* dpi wont work, only pixels work whhen using canvas

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T05:50:56+00:00Added an answer on May 24, 2026 at 5:50 am

    You can implement a helper method that you can use to request calculations based on the device’s dpi.

    Based on @MitulNakum answer from this qustion, do this:

    //note that mdpi is the standard
    float getAdjustedDimension(float value){
        DisplayMetrics metrics = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(metrics);
        switch(metrics.densityDpi){
             case DisplayMetrics.DENSITY_LOW:
                  //api 4 and higher
                  return 0.75 * value;
             case DisplayMetrics.DENSITY_MEDIUM:
                  //api 4 and higher
                  return value;
             case DisplayMetrics.DENSITY_HIGH:
                  //api 4 and higher
                  return value * 1.25;
             case DisplayMetrics.DENSITY_XHIGH
                  //api 9 and higher
                  return value * 2;
             case DisplayMetrics.DENSITY_TV
                  //api 13 and higher
                  return value * 1.33125;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am making a 2D game in javascript/ajax, that will be using data stored
I've been making a game using the rokonandroid game engine, but I randomly get
Little background.. I'm in the process of making an OpenGL game using Java and
I'm making a game for Android and I'm using transparent PNG's. But does the
I am making an iPhone game that will be using Game Center to support
I built a slideshow/decision-making game in Flash but would like to try to redo
I am making a game that needs a crosshair. I have been playing with
I am making a game using C# with the XNA framework. The player is
I'm making a game using JigLib and GLGE . The camera follows the player
I'm making a small game using the HTML5 canvas element. It works great, except

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.