0

クラスの関数initFonts()内の関数を介してテキスト スタイルを変更できません。onCreate()エラーはありませんが、何も起こりません。無限ループ (1 秒の遅延) であるランナブルを実行しています。これは問題ですか?

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);     
        setContentView(R.layout.activity_main); 

        initFonts();

        // Start a load dialog
        progressdialog = new ProgressDialog(MainActivity.this);
        progressdialog.setTitle("Please wait");
        progressdialog.setMessage("Loading...");
        progressdialog.setCancelable(false);
        progressdialog.show();


        // Start updating all lists
        runnable = new Runnable() {
            public void run() {
                updateList();
            }
        }; 

        // Keep it running
        runnable.run();         
    }

メソッドのフォントを変更していますinitFonts()

TextView cur = (TextView)findViewById(R.id.current);
TextView plus = (TextView)findViewById(R.id.plus);
TextView min = (TextView)findViewById(R.id.min);

cur.setTextSize(150);
Typeface font = Typeface.createFromAsset(getAssets(), "font.ttf");  
cur.setTypeface(font);

plus.getBackground().setAlpha(45);
min.getBackground().setAlpha(45);
4

1 に答える 1

0
Typeface font = Typeface.createFromAsset(getAssets(), "foldername/font.ttf");  
cur.setTypeface(font);
于 2013-06-21T11:36:58.613 に答える