如何隐藏或杀死Spinner下拉列表下方的空白区域

时间:2015-01-30 18:40:54

标签: android

我已经使用此链接中存在的Spinner类在我的项目中成功实现了Spinners:

How to make an Android Spinner with initial text "Select One"

另外,我自定义了每个项目的布局,并将其命名为spinner_entries_style.xml ..

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="2dp"
        android:background="#640c1c"
        android:maxEms="10"
        android:padding="10dp"
        android:singleLine="false"
        android:textColor="#d7a801"
        android:textSize="18sp" />

</LinearLayout>

另外,这些是我在代码中使用的Adapter类。

class LoanTypeAdapter extends ArrayAdapter<String> {

        Context context;
        String[] items;

        public LoanTypeAdapter(Context context, String[] items) {

            super(context, R.layout.spinner_entries_style, R.id.textView, items);
            this.context = context;
            this.items = items;
        }

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

            View view = convertView;
            ViewHolder holder = null;
            if (view == null) {
                LayoutInflater inflater = (LayoutInflater) getContext()
                        .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                view = inflater.inflate(android.R.layout.simple_spinner_item,
                        parent, false);
                holder = new ViewHolder(view);
                view.setTag(holder);
            } else {
                holder = (ViewHolder) view.getTag();
            }
            holder.textView.setText(items[position]);
            holder.textView.setTextColor(Color.parseColor("#d7a801"));
            holder.textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18);
            holder.textView.setSingleLine(true);
            return holder.textView;
            // ------------------------------------------

        }

        class ViewHolder {
            final TextView textView;

            ViewHolder(View view) {
                textView = (TextView) view;
            }
        }

    }

这就是..

class LoanProgramAdapter extends ArrayAdapter<String> {

        Context context;
        String[] items;

        public LoanProgramAdapter(Context context, String[] items) {

            super(context, R.layout.spinner_entries_style, R.id.textView, items);
            this.context = context;
            this.items = items;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View view = convertView;
            ViewHolder holder = null;
            if (view == null) {
                LayoutInflater inflater = (LayoutInflater) getContext()
                        .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                view = inflater.inflate(android.R.layout.simple_spinner_item,
                        parent, false);
                holder = new ViewHolder(view);
                view.setTag(holder);
            } else {
                holder = (ViewHolder) view.getTag();
            }

            holder.textView.setText(items[position]);
            holder.textView.setTextColor(Color.parseColor("#d7a801"));
            holder.textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18);
            holder.textView.setSingleLine(true);
            return holder.textView;

        }

        class ViewHolder {
            final TextView textView;

            ViewHolder(View view) {
                textView = (TextView) view;
            }
        }

    }

但是,在构建微调器之后我遇到了一些奇怪的事情。在Android版本(4.2或更低版本)中运行应用程序时,下拉列表下方会有一个空白区域。

以下是发生的事情的截图..

http://www.mediafire.com/view/cqj51t8e3aju18m/01.png

http://www.mediafire.com/view/ure788yetrt00v3/02.png

这不仅仅是在模拟器上,而且在具有Android 4.2或更低版本的真实设备中。此外,在某些设备中,这个空白区域看起来有点大。

有什么想法隐藏或杀死这些白色区域?解决这个问题的任何方法?

2 个答案:

答案 0 :(得分:0)

从spinner_entries_style.xml中删除此行。

android:layout_marginBottom="2dp"

答案 1 :(得分:0)

我在阅读这篇文章后找到了这个问题的解决方案。

How to wrap lengthy text in a spinner

在我的名为spinner_entries_style.xml的布局中,我应该像这样指定文本视图的高度:

android:layout_height="?android:attr/listPreferredItemHeight"

就像那样:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="?android:attr/listPreferredItemHeight"
        android:layout_marginBottom="2dp"
        android:background="#640c1c"
        android:maxEms="10"
        android:padding="10dp"
        android:singleLine="false"
        android:textColor="#d7a801"
        android:textSize="18sp" />

</LinearLayout>

这成功解决了我的问题..