I need to change the colors of the action bar, but when I change these data in the Android app, it does not change colors dynamically (unlike in iOS).
I need when I
You need to create a custom theme in droid/resource/styles.xml. and also need to apply this theme in your MainActivity
Apply Theme on MainActivity
[Activity(Label = "YourProject.Droid", Icon = "@drawable/icon", Theme = "@style/MyTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
Add a custom theme in Style.XML file
For more understanding