Android根据屏幕大小设置字体
7,640 views
0
适应不同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; } }
版权所有: 本文系米扑博客原创、转载、摘录,或修订后发表,最后更新于 2011-10-18 19:22:11
侵权处理: 本个人博客,不盈利,若侵犯了您的作品权,请联系博主删除,莫恶意,索钱财,感谢!
转载注明: Android根据屏幕大小设置字体 (米扑博客)