我可以自定义原生Android活动的操作栏吗?

时间:2016-07-07 09:17:44

标签: android

我开始这样的意图

            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>

1 个答案:

答案 0 :(得分:0)

我最终创建了自己的添加联系人活动并使用我的代码添加联系人。

Inserting contacts in Android 2.2