我开始这样的意图
Intent intent = new Intent(ContactsContract.Intents.Insert.ACTION);
intent.setType(ContactsContract.RawContacts.CONTENT_TYPE);
startActivity(intent);
已启动的活动的操作栏有蓝色背景。
我可以更改/自定义操作栏或其bg颜色吗?
对于我的大多数活动,我都有自定义操作栏
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/action_bar_background"
...
</RelativeLayout>