现在的位置: 首页 > 综合 > 正文

Android 根据屏幕大小设置字体

2018年01月18日 ⁄ 综合 ⁄ 共 428字 ⁄ 字号 评论关闭

IT程序员开发必备-各类资源下载清单,史上最全IT资源,个人收藏总结!

适应不同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;
			
		}
	}



抱歉!评论已关闭.