我有一个ListView
包含 aTextView
和 aNumberPicker
的每一行。每当我启动活动时,数字NumberPicker
都是白色的(与背景颜色相同)。
还有其他建议吗?
-
NumberPicker.xml
<NumberPicker
android:id="@+id/npMaterialAmount"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="75dp"
style="@style/npColour"/>
-
尝试风格1:
<style name = "npColour" >
<item name = "android:textColor">#000000</item>
</style>
-
尝试风格2:
<style name = "npColour" parent ="@android:style/Theme.Holo.Light">
</style>
-
... 而这样的例子不胜枚举...