您好,登錄后才能下訂單哦!
要自定義Spinner控件的列表項背景色,可以通過自定義Adapter來實現。下面是一個簡單的例子:
public class CustomAdapter extends ArrayAdapter<String> {
private Context mContext;
private int mResource;
private List<String> mItems;
private int mBackgroundColor;
public CustomAdapter(Context context, int resource, List<String> items, int backgroundColor) {
super(context, resource, items);
mContext = context;
mResource = resource;
mItems = items;
mBackgroundColor = backgroundColor;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(mContext);
View view = inflater.inflate(mResource, parent, false);
TextView textView = view.findViewById(android.R.id.text1);
textView.setText(mItems.get(position));
textView.setBackgroundColor(mBackgroundColor);
return view;
}
}
List<String> items = new ArrayList<>();
items.add("Item 1");
items.add("Item 2");
items.add("Item 3");
Spinner spinner = findViewById(R.id.spinner);
int backgroundColor = Color.parseColor("#FF0000"); // 設置背景色為紅色
CustomAdapter adapter = new CustomAdapter(this, android.R.layout.simple_spinner_item, items, backgroundColor);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);
通過以上步驟,就可以自定義Spinner控件的列表項背景色了。可以根據自己的需求修改Adapter中的代碼,來實現更多個性化的效果。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。