将选择器行标题从黑色更改为白色

Change the Picker Row Title from black to white

如何在 Android 将选择器行标题从黑色更改为白色?我尝试使用 TSS 并在 XML 中尝试使用属性,但没有成功。

XML

<Alloy>
    <View top="80" height="70">
        <Label class="calendarViewDayDay" top="5" left="10" color="#FFFFFF" text="L('Rooms')"></Label>
        <Picker id="Numberpicker2" top="20" left="10">
            <PickerColumn>
                <PickerRow title="1" />
                <PickerRow title="2" />
                <PickerRow title="3" />
                <PickerRow title="4" />
                <PickerRow title="5" />
                <PickerRow title="6" />
                <PickerRow title="7" />
                <PickerRow title="8" />
                <PickerRow title="9" />
                <PickerRow title="10" />
            </PickerColumn>
        </Picker>
    </View>
</Alloy>

如文档所述,这仅适用于 Windows 和 MobileWeb: https://appcelerator.github.io/appc-docs/platform/latest/#!/api/Titanium.UI.PickerRow-property-color

更改颜色的唯一方法是使用自定义 Android 主题。您必须按照 here 添加您的样式,然后将上面的代码放入您的样式文件中:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Theme.CustomTheme" parent="Theme.AppCompat">
        <item name="android:spinnerItemStyle">@style/MySpinnerItem</item>
    </style>
    <style name="MySpinnerItem" parent="@android:style/Widget.TextView.SpinnerItem">
        <item name="android:textColor">your_color_in_hex</item>
    </style>
</resources>