I was looking at the google site:
https://developer.android.com/training/material/theme.html
Which shows how to edit the ActionBar Theme, etc..
This part here:
How do I put that into B4A? Manifest Editor?
https://developer.android.com/training/material/theme.html
Which shows how to edit the ActionBar Theme, etc..
This part here:
B4X:
<resources>
<!-- inherit from the material theme -->
<stylename="AppTheme"parent="android:Theme.Material">
<!-- Main theme colors -->
<!-- your app branding color for the app bar -->
<item name="android:colorPrimary">@color/primary</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="android:colorPrimaryDark">@color/primary_dark</item>
<!-- theme UI controls like checkboxes and text fields -->
<item name="android:colorAccent">@color/accent</item>
</style></resources>
How do I put that into B4A? Manifest Editor?