main.xml のレイアウト エディターを使用して、textView1 という textView を作成しました。カスタム フォントを使用したいので、コードのフォント セット行を onCreate に追加しましたが、textView1 という名前を認識していないようです
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 をコーディングするのはこれが初めてなので、まだ自分のやり方を感じています。