大家好,我是新来的。抱歉,如果我问一些简单的东西。我想改变自定义属性字符串的文本颜色。
attr.xml
<declare-styleable name="StoreCustomView">
<attr name="strLimit" format="integer" />
<attr name="strHeader" format="string" />
<attr name="storeItemHeight" format="dimension" />
<attr name="storeItemWidth" format="dimension" />
<attr name="strLoader" format="boolean" />
</declare-styleable>
片段_home
<com.test.apps.myapp.customView.StoreCustomView
android:id="@+id/horizontalStoreList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="visible"
custom:storeItemHeight="@dimen/v3_store_card_height"
custom:storeItemWidth="@dimen/v3_store_card_width"
custom:strHeader="@string/discover_stores_nearby"
custom:strLimit="6" />
因此,在本例中,我希望更改strHeader文本颜色
先谢谢你
我已经尝试了android:文本颜色="",android:颜色=""
2条答案
按热度按时间nzkunb0c1#
很抱歉缺乏信息。我不能很好地理解每个元素,但我希望它会帮助你,如果我张贴完整的代码StoreCustomView
wn9m85ua2#