首页 > 代码库 > Android 自定义字体 例子
Android 自定义字体 例子
1.选择你喜欢的字体,下载字体文件
字体参考:http://www.creativebloq.com/graphic-design-tips/best-free-fonts-for-designers-1233380
2.项目assets文件中新建font文件夹,将你的字体文件放在该文件夹中
3.项目代码
布局代码:
[html] view plaincopy
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <TextView
- android:id="@+id/DefaultFontText"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textSize="30sp"
- android:text="Here is some text." />
- <TextView
- android:id="@+id/CustomFontText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="30sp"
- android:text="Here is some text.">
- </TextView>
- </LinearLayout>
activity代码:
[java] view plaincopy
- public class Main extends Activity {
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- Typeface tf = Typeface.createFromAsset(getAssets(),
- "fonts/BPreplay.otf");
- TextView tv = (TextView) findViewById(R.id.CustomFontText);
- tv.setTypeface(tf);
- }
- }
4.效果图
5.源链接
http://www.barebonescoder.com/2010/05/android-development-using-custom-fonts/
Android 自定义字体 例子
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。