私のAndroidアプリケーションはHolo Lightテーマを使用しています。私のレイアウトファイルの内蔵テーマの色を参照
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/hint_foreground_light"
android:text="@string/welcome_city"/>
私はその色がここで定義されていることがわかります:
I私のレイアウトでは、私はこのように、テーマの残りの部分と同じ色を使用していることを確認したいですまた、@android:color/hint_foreground_light
と?textColorHint
を試しましたが、すべてのエラーが発生しました。組み込みテーマの色を使用するにはどうすればよいですか?
は、私のようなエラーを見ている:
No resource found that matches the given name (at 'textColor' with value '@color/hint_foreground_light').
Resource is not public. (at 'textColor' with value '@android:color/hint_foreground_light').
No resource found that matches the given name (at 'textColor' with value '?textColorHint').
(このTextView
がSpinner
のためであるととほぼホワイト・オン・ホワイトによってアップ表示されているので、私もandroid:textColor
設定をいじってる理由があります
1回の試行でどのようなエラーが発生しましたか? –
@ Code-Apprenticeは質問を編集してエラーを含めました。 –
あなたの 'compileSdkVersion'は何ですか? – Shaishav