我有一个应用程序,我从Web服务获取十六进制颜色代码,并使用我在所有布局中相应地设置颜色。
<style name="AppTheme.Base_Work" parent="Theme.AppCompat.DayNight.NoActionBar">
<item android:id="@+id/color_primary" name="colorPrimary">#9B59B6</item>
<item name="colorPrimaryDark">#8E44AD</item>
<item name="colorAccent">#5b1cd8</item>
<item name="android:windowBackground">@color/window_background</item>
<item name="android:textColorHint">@color/white</item>
<item name="colorControlNormal">#ba78ff</item>
<item name="colorControlActivated">#ba78ff</item>
<item name="colorControlHighlight">#ba78ff</item>
</style>
这是我在styles.xml中的主题。
我申请
setTheme(R.style.AppTheme_Base_Work);
在我的BaseActivity和每个活动中设置主题。
现在这是我的 ONE 布局小部件,我在其中使用 colorPrimary 来设置颜色。
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?colorPrimary"
app:tabGravity="fill"
app:tabMaxWidth="0dp"
app:tabMode="scrollable" />
现在我想在网络服务调用后更改主题的 colorPrimary 。
任何帮助将不胜感激..
我被困了2天。