I start an intent like this
Intent intent = new Intent(ContactsContract.Intents.Insert.ACTION);
intent.setType(ContactsContract.RawContacts.CONTENT_TYPE);
startActivity(intent);
The activity that has started has a blue background of its action bar.
Can I change/customize the action bar or its bg color?
For most of my activities I have custom action bar
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/action_bar_background"
...
</RelativeLayout>