Android 字型設定

來源:互聯網
上載者:User

標籤:

囧裡個囧Android 字型設定

Android 對中文字型支援很不好~~ 需要加入相應的字型庫

(1)建立布局Layout

//建立線性布局

        LinearLayout linearLayout=newLinearLayout(this);     

       //設定線性布局為垂直方向

        linearLayout.setOrientation(LinearLayout.VERTICAL);

       //以該線性布局做視圖

        setContentView(linearLayout);

(2)針對正常字型

       //普通正常字型

       normal=newTextView(this);      

       //設定字型內容,請注意:目前Android主要針對拉丁語系可使用字型設定,中文暫不支援

       normal.setText("Normal Font FYI");      

       //設定字型大小

       normal.setTextSize(20.0f);

       //設定字型為預設,正常字型

       normal.setTypeface(Typeface.DEFAULT,Typeface.NORMAL);

       //增加該字型並顯示到布局linearLayout中

        linearLayout.addView(normal,newLinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));

       

(3)針對粗體字型 

      //粗體字型

       bold=newTextView(this);

       bold.setText("Bold Font FYI");

       bold.setTextSize(20.0f);

       //設定字型顏色為藍色

       bold.setTextColor(Color.BLUE);      

      //設定字型為預設粗體,粗體字型

       bold.setTypeface(Typeface.DEFAULT_BOLD, Typeface.BOLD);

        linearLayout.addView(bold,newLinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));

 

(4)針對斜體字型

       //斜體字型

       italic=newTextView(this);

       italic.setTextSize(20f);

       italic.setText("Italic Font FYI");      

      //設定字型顏色為紅色

       italic.setTextColor(Color.RED);

       //設定字型為等寬字型,斜體字型

       italic.setTypeface(Typeface.MONOSPACE,Typeface.ITALIC);

        linearLayout.addView(italic,newLinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));

       

(5)針對粗斜體字型 

      //粗斜體字型

       italic_bold=newTextView(this);

       italic_bold.setTextSize(20f);

       italic_bold.setText("Italic & Bold Font FYI");

       //設定字型顏色為黃色

       italic_bold.setTextColor(Color.YELLOW); 

       //設定字型為等寬字型,斜體字型

       italic_bold.setTypeface(Typeface.MONOSPACE,Typeface.BOLD_ITALIC);

        linearLayout.addView(italic_bold,newLinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT)); 

(6)針對中文仿“粗體”

       //針對Android字型的中文字型問題

       chinese=newTextView(this);

       chinese.setText("中文粗體顯示效果");      

       //設定字型顏色

       chinese.setTextColor(Color.MAGENTA);

       chinese.setTextSize(20.0f);

       chinese.setTypeface(Typeface.DEFAULT_BOLD, Typeface.BOLD);

       //使用TextPaint的仿“粗體”設定setFakeBoldText為true。目前還無法支援仿“斜體”方法

       tp=chinese.getPaint();

       tp.setFakeBoldText(true);

        linearLayout.addView(chinese,newLinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));

 

(7)自訂建立字型

      //自訂字型字型

       custom=newTextView(this);

       //字型MgOpenCosmeticaBold.ttf放置於assets/font/路徑下

       typeface=Typeface.createFromAsset(getAssets(),"font/MgOpenCosmeticaBold.ttf");

       custom.setTypeface(typeface);

       custom.setText("Custom Font FYI");

       custom.setTextSize(20.0f);  

       //設定字型顏色

       custom.setTextColor(Color.CYAN);

        linearLayout.addView(custom,newLinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));

Android 字型設定

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.