程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-Android textView 中 onCreate 方法的改變

java-Android textView 中 onCreate 方法的改變

編輯:編程綜合問答
Android textView 中 onCreate 方法的改變

我在main.xml上使用 Layout Editor創建了一個textview名稱是textView1。
我想使用一個自定義的字體,所以我在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);
    }
}

什麼原因呢?

最佳回答:


    TextView textView1=(TextView)findViewById(R.id.textView1);//mail.xml裡這個textview的id
    Typeface type = Typeface.createFromAsset(getAssets(),"fonts/optima.ttf"); 
    textView1.setTypeface(type);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved