LZ你是指下拉高度吗?你怎么拉伸的啊?
你可以用Adapter来配置XML , 从而设计你的下拉效果的。
LZ看看这个贴
http://www.eoeandroid.com/thread-23806-1-1.html

解决方案 »

  1.   

    回楼上 不是下拉高度 就是这个Spinner自身的height 
    就是我们C++里的combobox那个东西 我把的height拉小一点,在模拟器上跑好像被切掉了一样
    而且这个combobox里的字体很大 不知道怎么改小点 谢谢
      

  2.   

    修改字体需要自定义adapter.
    private class MyArrayAdapter<String> extends ArrayAdapter<String> { public MyArrayAdapter(Context context, String[] resourceId,
    int textViewResourceId) {
    super(context, textViewResourceId, resourceId);
    } public TextView getView(int position, View convertView, ViewGroup parent) {
    TextView v = (TextView) super
    .getView(position, convertView, parent);
    Typeface tf =Typeface.createFromAsset(getAssets(), "fonts/samplefont.ttf"); 
    v.setTypeface(tf);
    v.setTextSize(30);
    return v;
    } public TextView getDropDownView(int position, View convertView,
    ViewGroup parent) {
    TextView v = (TextView) super
    .getView(position, convertView, parent);
    Typeface tf =Typeface.createFromAsset(getAssets(), "fonts/samplefont.ttf"); 
    v.setTypeface(tf);
    v.setTextSize(30);
    return v;
    } }