0
顏色是否可以指定colorPrimary和colorAccent個人風格elments而不是主題標籤指定的個人風格標籤
<style name="MyCustomTabLayout" parent="android:Widget">
<item name="colorPrimaryDark">@color/gray900</item>
<item name="colorAccent">@color/gray50</item>
<item name="tabBackground">?attr/colorPrimaryDark</item>
<item name="tabSelectedTextColor">?android:colorAccent</item>
</style>
<style name="MyCustomTabLayout2" parent="android:Widget">
<item name="colorPrimaryDark">@color/gray50</item>
<item name="colorAccent">@color/gray900</item>
<item name="tabBackground">?attr/colorPrimaryDark</item>
<item name="tabSelectedTextColor">?android:colorAccent</item>
</style>
,當我試圖做的是應用這個默認的主題。有沒有一種方法/更好的方法來做到這一點?