16

我正在动态创建一个新的微调器,如何更改我的列表背景颜色?

当前的背景颜色是一些深灰色:

两个木偶 当我将微调器的背景属性更改为白色时,我遇到了这种不需要的情况:

两个木偶 我希望它在活动中是透明的,只有当我打开微调器(按下它)时,我希望背景是白色的。

这是我创建微调器的代码:

我正在创建适配器:

    mAdapter = new ArrayAdapter<String>(getApplicationContext(), 
                                     R.layout.spinner, R.id.Language, lang);
    LinearLayout layoutHolder = 
                         (LinearLayout)findViewById(R.id.RegisterFormLayout);
    Spinner spinner = new Spinner(getApplicationContext());
    LayoutParams layParams= new 
                Spinner.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,       
                                         ViewGroup.LayoutParams.WRAP_CONTENT);
    spinner.setLayoutParams(layParams);
    spinner.setAdapter(mAdapter); 
    spinner.setOnItemSelectedListener(new myOnItemSelectedListener());
    if (lang != null)
       spinner.setSelection(lang.intValue());
    spinnerList.add(spinner);
    layoutHolder.addView(spinner);

我的 spinner.xml 布局是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" 
android:id="@+id/SpinnerLayout">

<TextView
    android:id="@+id/Language"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="#ffffff"
    android:background="#00ffffff"
    android:padding="5dp" />
</LinearLayout>

有什么建议吗?

4

4 回答 4

24

我认为通过主题更改无法实现此要求。因为 Spinner 构造函数仅当您在布局 xml 中写入时才会在 popupBackground attr 上分配值,否则它将使用默认主题值。像下面

   <Spinner
    android:id="@+id/spinner1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:popupBackground="@android:color/holo_green_dark" />

// 只是尝试改变弹出背景

于 2013-04-25T09:02:13.480 回答
13

解决方案是在动态创建微调器时添加此代码:

spinner.setPopupBackgroundResource(R.drawable.spinner);

并在 Drawable 文件夹下创建 spinner.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <solid android:color="#ffffff" />
</shape>

此解决方案要求 API 级别为 16 及以上。

结果:

两个木偶

于 2013-04-25T10:14:05.667 回答
2

为了解决你的问题,试试这个。

android:popupBackground="#00826b"
于 2016-08-30T21:41:48.770 回答
1

在我的 spinner.xml

在 LinearLayout 中使用它:android:background="#ffffff"

于 2013-04-25T08:30:48.190 回答