我试图在 /values/styles.xml 文件中以这种方式定义样式:
<style name="TextAppearance.test" parent="@android:style/TextAppearance">
<item name="android:typeface">sans</item>
<item name="android:textColor">@android:color/white</item>
<item name="android:textSize">15sp</item>
<item name="android:clickColor">@android:color/red</item>
</style>
但是,日食在样式标记的最后一行显示一个错误,其中包含文本:
error: Error: No resource found that matches the given name: attr 'android:clickColor'.
我发现某个地方可能需要将构建目标设置为 13。在我的应用程序中,我在 AndroiManifest.xml 中有以下几行:
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="16" />
知道是什么导致了问题吗?