現在のテーマに基づいて、ビューの背景 (ant テキストの色) のスタイルを設定しようとしています。
私のattrsには次のものがあります:
<attr name="DirectoryRowTrackName" format="color|reference" />
<attr name="DirectoryRowSmallName" format="color|reference" />
<attr name="DirectoryRowBackground" format="color|reference" />
私の ActionBarSherlock 派生テーマには、次のものがあります。
<style name="Theme.Xenolight" parent="@style/Theme.Sherlock.Light">
<item name="actionBarItemBackground">@drawable/selectable_background_xenolight</item>
<item name="popupMenuStyle">@style/PopupMenu.Xenolight</item>
<item name="dropDownListViewStyle">@style/DropDownListView.Xenolight</item>
<item name="actionBarTabStyle">@style/ActionBarTabStyle.Xenolight</item>
<item name="actionDropDownStyle">@style/DropDownNav.Xenolight</item>
<item name="actionBarStyle">@style/ActionBar.Solid.Xenolight</item>
<item name="actionModeBackground">@drawable/cab_background_top_xenolight</item>
<item name="actionModeSplitBackground">@drawable/cab_background_bottom_xenolight</item>
<item name="actionModeCloseButtonStyle">@style/ActionButton.CloseMode.Xenolight</item>
<item name="DirectoryRowTrackName">#000000</item>
<item name="DirectoryRowSmallName">#aaaaaa</item>
<item name="DirectoryRowBackground">#55ffffff</item>
</style>
次に、色を適用しようとしています:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="?attrs/DirectoryRowBackground"
android:id="@+id/cale"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:gravity="bottom" >
「現在のテーマのテーマ リソース DirectoryRowBackground が見つかりませんでした」という結果になります。
android:background="?attrs/DirectoryRowBackground"
また
android:background="?DirectoryRowBackground"
私は何を間違っていますか?