Intent URI to go to favorite contacts

前端 未结 1 801
余生分开走
余生分开走 2021-01-06 09:46

Is there an Intent URI that sends you to your phones favorite contacts?

Just like content://contacts/people/ sends you to all your contacts and tel:

相关标签:
1条回答
  • 2021-01-06 10:06

    Favorites:

    // "com.android.contacts.action.LIST_STARRED"
    Intent intent = new Intent(Contacts.Intents.UI.LIST_STARRED_ACTION);
    startActivity(intent);
    

    Call log:

    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setType("vnd.android.cursor.dir/calls");
    startActivity(intent);
    
    0 讨论(0)
提交回复
热议问题