리비전 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 |
} |
---|