android使用微軟雅黑字體,需要下載字體 ttf文件
下載地址:http://download.csdn.net/detail/xiaoliu123586/9049815
放在assert,然后引用即可,如下圖:
1 Button button= (Button) this.findViewById(R.id.stafflogin); 2 3 Typeface mTypeface = Typeface.createFromAsset(this.getAssets(),"fonts/wryh.ttf"); 4 button.setTypeface(mTypeface);