Created Intent based on ContactContract (load up Native Android Contact App) into an activity in an app. Is it possible to add an Action to the Action Bar versus building a separate List view. Trying to standardize on Android's interface
Here is the code:
setContentView(R.layout.contact_list);
ActionBar actionBar = getActionBar();
actionBar.setTitle(R.string.contacts);
actionBar.setDisplayOptions(0, ActionBar.DISPLAY_SHOW_HOME);
Intent intent = new Intent(Intent.ACTION_VIEW,ContactsContract.Contacts.CONTENT_URI);
startActivityForResult(intent, PICK_CONTACT);
// ContentResolver for Contacts
getContacts();