1
I want to show the custom font In my Application. I want to show the custom font inside the spinner. For that I have used the custom adapter for creating the spinner. 

I am getting the output that I want when spinner opens And I am getting the custom fonts. But when spinner close that time word is not readable font is not setting.

Image1: Inside the spinner the word is not readable.![enter image description here][1]  


Image2: when spinner open the word is readable:
![enter image description here][2]

I have used the 
**Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/kalpurush.ttf");**

**textViewlistview.setTypeface(tf);**

But how should I set the font inside the spinner. when settext inside the spinner.


  [1]: http://i.stack.imgur.com/i02XA.png
  [2]: http://i.stack.imgur.com/Vkydk.png

下面是我使用微调器的适配器

private class CustomAdapterSpinner extends ArrayAdapter
    {
        public CustomAdapterSpinner() {
            //super(context, android.R.layout.simple_spinner_item, objects);
            super(CustomizeFontsAndroid.this, R.layout.simple_spinner1,R.id.textviewSpinner,strarraySpinner);
            // TODO Auto-generated constructor stub
            tf1=Typeface.createFromAsset(CustomizeFontsAndroid.this.getAssets(), "fonts/kalpurush.ttf");
        }

        @Override
        public View getDropDownView(int position, View convertView,
                ViewGroup parent) {

            View view = super.getView(position, convertView, parent);

            TextView textviewSpinner = (TextView)view.findViewById(R.id.textviewSpinner);
            textviewSpinner.setTypeface(tf1);
            textviewSpinner.setCompoundDrawables(null, null, null, null);
            textviewSpinner.setTextSize(16);
            textviewSpinner.setText(strarraySpinner[position].toString()+"\n");
            //textviewSpinner.setText(R.string.bangla);

            return view;
        }
  }//end of the Spinner Adapter
4

1 回答 1

0

您需要使用适配器为微调器创建视图。即使适配器创建的视图只是一个TextView. 这样做会让你调用setTypeface().TextView

我阅读了您的评论,但您需要在getView()您的Adapter. 确保你的Adapter工具SpinnerAdapterSpinnerAdapter有两个返回视图的方法,getView()getDropDownView().

getView()返回用于显示目的的视图,即当微调器的弹出窗口未显示时(未为您使用正确字体的视图)。

getDropDownView()返回在微调器的项目列表中使用的视图。

在此处查看SpinnerAdapter的参考。

于 2012-07-28T11:50:33.603 回答