Android 如何在自定义主题中定义PagerTitleStrip背景?

Android 如何在自定义主题中定义PagerTitleStrip背景?,android,android-styles,Android,Android Styles,我试图在我的自定义主题中定义一些颜色方案。若用户在运行时更改了一个主题,这些事情就会发生变化- 布局背景 页带背景 自动完成文本视图背景 如何为主题中的属性定义属性?我没找到。 到目前为止,我的themes.xml- <style name="NotepadTheme" parent="android:Theme.Holo.Light"> <item name="android:textColorPrimary">#000000</item>

我试图在我的自定义主题中定义一些颜色方案。若用户在运行时更改了一个主题,这些事情就会发生变化-

  • 布局背景
  • 页带背景
  • 自动完成文本视图背景
如何为主题中的属性定义属性?我没找到。 到目前为止,我的
themes.xml
-

<style name="NotepadTheme" parent="android:Theme.Holo.Light">
    <item name="android:textColorPrimary">#000000</item>
    <item name="android:editTextBackground">@drawable/searchbox_border_note_theme</item>

</style>

#000000
@可绘制/搜索框\边框\注释\主题

谢谢

您有解决方案吗?