root/trunk/15.FontTest/src/soo/ui/font/FontTest.java

리비전 38, 0.6 kB (mefour에 의해 체크인됨, 15 년 전)

--

Line 
1 package soo.ui.font;
2
3 import android.app.Activity;
4 import android.graphics.Typeface;
5 import android.os.Bundle;
6 import android.widget.EditText;
7
8 public class FontTest extends Activity {
9     /** Called when the activity is first created. */
10     @Override
11     public void onCreate(Bundle savedInstanceState) {
12         super.onCreate(savedInstanceState);
13         setContentView(R.layout.main);
14        
15         EditText et = (EditText)findViewById(R.id.editText05);
16         Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/HandmadeTypewriter.ttf");
17         et.setTypeface(tf);
18     }
19 }
참고: 소스 브라우저를 사용하면서 도움이 필요하다면, TracBrowser를 참고하십시오.