簡體   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