我正在尝试在/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>
但是,eclipse在样式标记的最后一行显示错误:
error: Error: No resource found that matches the given name: attr 'android:clickColor'.
我发现某处我可能需要将构建目标设置为13.在我的应用程序中,我在AndroiManifest.xml中有以下几行:
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="16" />
知道是什么导致了这个问题吗?
答案 0 :(得分:1)
如果你尝试了所有可能性,最后也没有工作,那么你可以选择
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:color="....."/> <!-- pressed -->
<item android:state_focused="true"
android:color=".........."/> <!-- focused -->
<item android:color="..........."/> <!-- default -->
</selector>