手機裝置太多,解析度也不一樣,看到網上大部分的適應字型的方法是定義values320×480或value-hdpi方式去處理。
採用第一種的就慘了,很多裝置的解析度是不一樣的,難道要每種都定義嗎?
採用第二種的在平板電腦裡沒有效果。
最後還是代碼的方式方便快捷。。。
//遍曆設定字型public static void changeViewSize(ViewGroup viewGroup,int screenWidth,int screenHeight) {//傳入Activity頂層Layout,螢幕寬,螢幕高int adjustFontSize = adjustFontSize(screenWidth,screenHeight);for(int i = 0; i<viewGroup.getChildCount(); i++ ){View v = viewGroup.getChildAt(i);if(v instanceof ViewGroup){changeViewSize((ViewGroup)v,screenWidth,screenHeight);}else if(v instanceof Button){//按鈕加大這個一定要放在TextView上面,因為Button也繼承了TextView( (Button)v ).setTextSize(adjustFontSize+2);}else if(v instanceof TextView){if(v.getId()== R.id.title_msg){//頂部標題( (TextView)v ).setTextSize(adjustFontSize+4);}else{( (TextView)v ).setTextSize(adjustFontSize);}}}}//擷取字型大小public static int adjustFontSize(int screenWidth, int screenHeight) {screenWidth=screenWidth>screenHeight?screenWidth:screenHeight;/** * 1. 在視圖的 onsizechanged裡擷取視圖寬度,一般情況下預設寬度是320,所以計算一個縮放比率 rate = (float) w/320 w是實際寬度 2.然後在設定字型尺寸時 paint.setTextSize((int)(8*rate)); 8是在解析度寬為320 下需要設定的字型大小 實際字型大小 = 預設字型大小 x rate */int rate = (int)(5*(float) screenWidth/320); //我自己測試這個倍數比較適合,當然你可以測試後再修改return rate<15?15:rate; //字型太小也不好看的}
最後在Avtivity的oncreate完後調用一下changeViewSize就行了。。。文字大了那麼它對應的背景也就跟著大,所以建議控制項的背景圖片用9宮格類型的圖片,看起來舒服。
另外附加,如果你開發的應用想在平板電腦上瀏覽無礙請在AndroidManifest.xml檔案中的manifest節點(DTD建議放在application節點上面)裡加入:
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:resizeable="true"/>