android字型大小根據解析度自動調整

來源:互聯網
上載者:User

手機裝置太多,解析度也不一樣,看到網上大部分的適應字型的方法是定義values320×480或value-hdpi方式去處理。
採用第一種的就慘了,很多裝置的解析度是不一樣的,難道要每種都定義嗎?
採用第二種的在平板電腦裡沒有效果。


最後還是代碼的方式方便快捷。。。


[java]
//遍曆設定字型  
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; //字型太小也不好看的  

//遍曆設定字型
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節點上面)裡加入:
[java]
<supports-screens 
        android:anyDensity="true" 
        android:largeScreens="true" 
        android:normalScreens="true" 
        android:smallScreens="true"  
        android:resizeable="true"/> 

<supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true"
        android:resizeable="true"/>

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.