当我点击Spinner时,我想删除蓝色(我用Holo测试我的应用程序)。
我的代码:
ArrayAdapter<String> array_adapter = new ArrayAdapter<String> (getActivity(),
R.layout.spinner_item, string_array);
array_adapter.setDropDownViewResource(R.layout.spinner_item);
Spinner spinner = (Spinner) getView().findViewById(R.id.spinner);
spinner.setAdapter(array_adapter);
spinner_item.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/spinner_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAllCaps="true"
android:background="@drawable/item"
style="@style/EquidiaTheme.MySpinner" />
和item.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@android:color/transparent" />
<item android:state_selected="true" android:drawable="@android:color/transparent" />
<item android:drawable="@android:color/transparent" />
</selector>
这不起作用。有什么想法吗?
答案 0 :(得分:0)
自定义android:spinnerDropDownItemStyle
答案 1 :(得分:0)
当我选择它时,我能够摆脱项目上的蓝色矩形: 首先,我声明要在values.xml中使用的颜色:
<resources>
<drawable name="red_color">#ff0000</drawable>
<drawable name="blue_color">#0000ff</drawable>
<drawable name="green_color">#00ff00</drawable>
<drawable name="transparent_color">#00000000</drawable>
</resources>
比我在Styles.xml中定义自定义样式
<resources>
<style name="Theme.Spinner" parent="android:Theme.Holo">
<item name="android:attr/listChoiceBackgroundIndicator">@drawable/transparent_color</item>
</style>
</resources>
在风格中我只能使用在资源中定义的颜色(设置颜色如:@android:color / XXX或#XXX直接在样式中没有工作)
毕竟我在活动上应用了它们。我使用Xamarin,所以可能代码是:
[Activity( Label = "TestLayouts", MainLauncher = true, Icon = "@drawable/icon", Theme="@style/Theme.Spinner")]
但对于android应该是:
<activity android:theme="@style/Theme.Spinner">
我用这个答案作为参考: Default selector background in Clickable Views
也是为了摆脱旋转器本身使用的蓝色矩形:
<Spinner
android:background="@null"
您需要使用两者来完全删除蓝色可直接。 也许这种风格的属性可以帮助你:
<item name="android:attr/colorPressedHighlight">#FF0000</item>
<item name="android:attr/colorLongPressedHighlight">#FF0000</item>
<item name="android:attr/listChoiceIndicatorSingle">@drawable/red_color</item>
答案 2 :(得分:0)
没有主题的解决方案。如果你只有一些微调器,那就太理想了。
使用州(https://developer.android.com/guide/topics/resources/drawable-resource.html#StateList)
创建一个drawable(xml)将SAME图像用于PRESSED和NORMAL
状态然后将其用作背景:
mySpinner.setBackgroundResource(R.drawable.my_spinner_state_drawable)
额外提示: