添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
睿智的核桃  ·  配置 Jenkins ...·  1 年前    · 
宽容的毛衣  ·  c# - How to fix `Your ...·  1 年前    · 
英姿勃勃的葡萄  ·  WorksheetFunction.Week ...·  1 年前    · 


适应不同Android手机屏幕大小

240*320

320*480

480*800

480*854

540*960

800*1200

800*1280

  public static int adjustFontSize(int screenWidth, int screenHeight){

if (screenWidth <= 240) { // 240X320 屏幕

return 10;

}else if (screenWidth <= 320){ // 320X480 屏幕

return 14;

}else if (screenWidth <= 480){ // 480X800 或 480X854 屏幕

return 24;

}else if (screenWidth <= 540){ // 540X960 屏幕

return 26;

}else if(screenWidth <= 800){ // 800X1280 屏幕

return 30;

}else{ // 大于 800X1280

return 30;

}
}