Mat*_*man 4 android android-intent
是否有一个Intent URI可以将您发送到手机最喜欢的联系人?
就像内容:// contacts/people /将您发送给所有联系人并tel:将您发送到您的拨号器.
编辑
还有一种方法可以转到您的通话记录吗?
我的最爱:
// "com.android.contacts.action.LIST_STARRED"
Intent intent = new Intent(Contacts.Intents.UI.LIST_STARRED_ACTION);
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)
通话记录:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("vnd.android.cursor.dir/calls");
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2543 次 |
| 最近记录: |