7

The default color for the subtext in the android showcaseview library found here is white. I would like to make the subtext black. I cannot find any documentation on how to change text color. There is a guide on XDA Developers which says how to change text color but it seems to be outdated. Anyone familiar with showcaseview?

Thank you.

4

2 回答 2

12

我遇到了完全相同的问题,并设法通过从 Eclipse 编辑库本身的颜色值来更改文本颜色。这假定您已经在 Eclipse 中导入了该库,并且它应该可以从包资源管理器窗口中看到。

导航到:[库包] -> [res] -> [values] -> [styles.xml]。

现在,改变这个:

  <style name="TextAppearance.ShowcaseView.Detail" parent="android:style/TextAppearance">
    <item name="android:textColor">#FFFFFF</item>
  </style>

进入这个:

   <style name="TextAppearance.ShowcaseView.Detail" parent="android:style/TextAppearance">
            <item name="android:textColor">#000000</item>
   </style>
于 2014-01-16T10:55:05.803 回答
5

我知道这个答案已经很晚了,但我一直在努力解决同样的问题。

此处的此链接(尤其是标题为主题的部分)帮助我有效地自定义 ShowcaseView,而不是修改库本身。

也许这个答案会像我刚才那样帮助将来偶然发现这篇文章的其他人。

于 2014-06-10T08:51:27.120 回答