我有一个属性来定义android中TextView的字体权重,如下所示(在attr.xml中(:
<attr name="textViewWeight">
在styles.xml中,我为这个属性赋值:
<item name=textViewWeight>bold</item>
在应用于TextView的样式中:
<style name="TextStyle" parent="TextAppearance.AppCompat">
<item name="android:textStyle">?attr/textViewWeight</item>
</style>
但该属性没有得到解析。我需要使用像粗体这样的值,而不是
<style name="TextStyle" parent="TextAppearance.AppCompat">
<item name="android:textStyle">bold</item>
</style>
我能以某种方式为textStyle分配一个属性吗?
?以下是您还缺少的内容,例如终止标记。
</item>