Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android萬能分辨率適應法

Android萬能分辨率適應法

編輯:關於Android編程

(1)獲取屏幕的尺寸

WindowManager windowManager = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
Display d = windowManager.getDefaultDisplay();
mWidth = d.getWidth();
mHeight = d.getHeight();
DisplayMetrics dm = getResources().getDisplayMetrics();
mScreenDensity = dm.density;


(2)美工設計圖的尺寸

uiWidth,uiHeight

(3)獲取縮放比例

float scaleWidth = mWidth / uiWidth;
float scaleHeight = mHeight/ uiHeight; 

(4)所有布局的尺寸用代碼實現

public static int getWidthSize(int size){
    return (int) (size * scaleWidth);
}

public static int getHightSize(int size){
    return (int) (size * scaleHeight);
}

public static float getTextSize(int pxSize){
    return (pxSize*scaleHeight) / mScreenDensity;
}

public static void setViewSize(int width, int height, View v){
    int paramWidth = getWidthSize(width);
    int paramHeight = getHightSize(height);
    ViewGroup.MarginLayoutParams params 
           = (ViewGroup.MarginLayoutParams) v.getLayoutParams();
    if (width != INVALID){
        params.width = paramWidth;
    }
    if (height != INVALID){
        params.height = paramHeight;
    }
    v.setLayoutParams(params);
}

public static void setViewPadding(int left, int top, int right, int bottom,
        View v){
    left = getWidthSize(left);
    top = getHightSize(top);
    right = getWidthSize(right);
    bottom = getWidthSize(bottom);
    v.setPadding(left, top, right, bottom);
}


public static void setViewMargin(int left, int top, int right, int bottom,
        View v){
    int paramLeft = getWidthSize(left);
    int paramTop =  getHightSize(top);
    int paramRight = getWidthSize(right);
    int paramBottom = getHightSize(bottom);
    ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams)
                 v.getLayoutParams();
    if (left != INVALID){
        params.leftMargin = paramLeft;
    }
    if (right != INVALID){
        params.rightMargin = paramRight;
    }
    if (top != INVALID){
        params.topMargin = paramTop;
    }
    if (bottom != INVALID){
        params.bottomMargin = paramBottom;
    }
    v.setLayoutParams(params);
}





  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved