我在我的应用程序中使用airwatch sdk。我需要更改我的应用程序的启动画面和登录屏幕的品牌,这实际上是airwatch的启动和登录屏幕。我想出了如何更改启动品牌图标和登录图标在我的代码中添加以下内容。 我在res / values / string.xml
中添加了这个 <style name="SDKBaseTheme" parent="Theme.AppCompat.Light">
<item name="awsdkSplashBrandingIcon">@drawable/tick_icon</item>
<item name="awsdkLoginBrandingIcon">@drawable/mauth_logo</item>
<item name="awsdkApplicationColorPrimary">@color/colorbtn</item>
</style>
我的问题是如何更改背景颜色并删除vmware的徽标并在其中添加我公司的徽标?