これが私のスピナーを設定する方法のコードであり、そのアイテムにカスタムフォントを設定したい私のクラスはextends Activityであり、私の部分的なコードは次のようになっています
Spinner supportSpinner = (Spinner) findViewById(R.id.supportSpinner);
ArrayAdapter supportAdapter = new ArrayAdapter(this,
android.R.layout.simple_spinner_item,supports);
supportSpinner.setAdapter(supportAdapter);
ところでサポートは私のスピナーのための私のアイテムの文字列配列リストです私はそのようなことをしたいのですがそれは許可しません
Typeface type = Typeface.createFromAsset(getAssets(), "comic.ttf");
supportSpinner.setTypeface(type);
スピナーのtextviews書体を変更するにはどうすればよいですか?