摘要: 国内论坛普遍安装的方式是 HJMac.iso + OS_X_Lion.iso,但分辨率问题没找到好的解法。根据http://www.sysprobs.com/guide-mac-os-x-10-7-lion-on-virtualbox-with-windows-7-and-intel-pc里的一个评论提到的方法,我试了一下还行,步骤如下:1. 启动Virtual Box虚拟机,在虚拟机里编辑 /Library/Preferences/SystemConfiguration/com.apple.Boot.plist,找到<dict>在后面加入 <key>Graphics 阅读全文
posted @ 2013-01-11 17:32 rui90102 阅读(1942) 评论(0) 推荐(0) 编辑
摘要: // 根据屏幕大小自动调整字体大小 public int autoFontSize() { DisplayMetrics dm = getResources().getDisplayMetrics(); // 获取设备宽度 int screenWidth = dm.widthPixels; int screenHeight = dm.heightPixels; screenWidth = screenWidth > screenHeight ? screenWidth : screenHeight; int rate = (int) (4 * (float) screenWidth... 阅读全文
posted @ 2013-01-11 11:15 rui90102 阅读(153) 评论(0) 推荐(0) 编辑