繁体   English   中英

如何更改微调器项目中文本的背景颜色?

[英]How to change the background color of a text in a spinner item?

如何更改微调框的选项项目的背景颜色? 我不想更改整个背景颜色,因此无法在布局中定义它。

String[] strings = {"Somelist", "SOmelist"};

Spinner spinner = (Spinner) findViewById(R.id.spinner1);
        spinner.setAdapter(new MyAdapter(this, R.layout.row, strings));

....    

public class MyAdapter extends ArrayAdapter<String> {

            public MyAdapter(Context context, int textViewResourceId,
                    String[] objects) {

                super(context, textViewResourceId, objects);

            }

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

                return getCustomView(position, convertView, parent);

            }

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

                return getCustomView(position, convertView, parent);

            }

            public View getCustomView(int position, View convertView,
                    ViewGroup parent) {

                LayoutInflater inflater = getLayoutInflater();

                View row = inflater.inflate(R.layout.row, parent, false);

                TextView label = (TextView) row.findViewById(R.id.company);

                label.setText(strings[position]);

                TextView sub = (TextView) row.findViewById(R.id.sub);

                sub.setText(subs[position]);

///You can have different combinations on which items in the list you want to change background, text or anything else

                if (position % 2 == 0) {
                    label.setTextColor(Color.BLUE);
                    row.setBackgroundColor(Color.RED);
                }

                return row;

            }

        }

布局:

<TextView
    android:id="@+id/company"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="5dip"
    android:layout_marginTop="2dip"
    android:padding="3dip"
    android:text="CoderzHeaven"
    android:textStyle="bold" />

<TextView
    android:id="@+id/sub"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/company"
    android:layout_marginLeft="5dip"
    android:padding="2dip"
    android:text="Heaven of all working codes" />

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM