main.xmlのレイアウトエディタを使用してtextView1というテキストビューを作成しました。私はのonCreateにIように、コードのフォントセットラインをカスタムフォントを使用したいが、名前textView1をrecongnizeしていないようだAndroid textView onCreate changes
package com.mystraldesign.memorable;
import android.app.Activity;
import android.graphics.Typeface;
import android.os.Bundle;
public class MemorableActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Typeface type = Typeface.createFromAsset(getAssets(),"fonts/optima.ttf");
textView1.setTypeface(type);
}
}
私は、単純な何かが欠けてると確信しているが、これは私にあります最初にAndroidをコーディングしていたので、まだ自分の周りを感じていました。
を? –