787
技術社區[雲棲]
ttf設置文字字體
MainActivity如下:
- package cn.testfont;
- import android.os.Bundle;
- import android.widget.TextView;
- import android.app.Activity;
- import android.graphics.Typeface;
- /**
- * Demo描述:
- * 利用TTF字體文件文字的顯示效果
- *
- * 步驟如下:
- * 1 在asset下建立fonts文件夾
- * 2 將.ttf文件拖入fonts文件夾Typeface
- * 3 在代碼中為TextView設置
- *
- */
- public class MainActivity extends Activity {
- private TextView mTextView;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- init();
- }
- private void init(){
- mTextView=(TextView) findViewById(R.id.textView);
- Typeface typeface = Typeface.createFromAsset(getAssets(),"fonts/test.ttf");
- mTextView.setTypeface(typeface);
- }
- }
main.xml如下:
- <RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
- xmlns:tools="https://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <TextView
- android:id="@+id/textView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="9527"
- android:textSize="22sp"
- android:layout_centerInParent="true"
- />
- </RelativeLayout>
最後更新:2017-04-03 07:57:03