PickerRowのフォントカラーを変更する
PickerRowのフォントカラーを白から黒に変更するのが少し面倒だったからメモとして
公式ドキュメントに英語ですが書いてあります.
Theme Nameを決める
2.1. 今回私はpicker_text
にしましたColorを指定する
3.1. 黒を指定Min SDK Versionを指定する
Compatibilityをを指定する
5.1. Titanium SDKが3.3.X以降の場合: APPCOMPAT
5.2. Titanium SDKが3.2.X以前の場合: NONEThemeを指定する
6.1. LIGHTを指定テーマを変更したいWidget(EditTextなど)をYesにする
7.1. 「Switch」「Switch Jellybean」「Drawer」は必ずNoにすること
7.2. Pickerの場合はSpinnerをYesにDOWNLOAD .ZIPボタンをクリックしダウンロード
ダウンロードしたZIPファイルを解凍
中にあるresフォルダの中身を
platform/android
直下にコピーtiapp.xmlを修正
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<application android:theme="@style/picker_text"/> <!-- 手順2で決めた名前 -->
<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="19"/>
</manifest>
</android>
Author And Source
この問題について(PickerRowのフォントカラーを変更する), 我々は、より多くの情報をここで見つけました https://qiita.com/to2ka/items/1ffe002af1fbf3338351著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .