在哪里可以找到 ContactsListActivity?
我正在触发一个打开联系人列表的意图,但到目前为止我无法在 Android 源代码中的任何位置找到生成的活动 (ContactsListActivity
)。我尝试 grep 平台 10 源代码,并在 https://android.googlesource.com 上搜索。有人知道我在哪里可以找到这个吗?
意图如下所示:
new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI);
logcat 给出以下输出:
I/ActivityManager( 52): Starting activity: Intent { act=android.intent.action.PICK dat=content://com.android.contacts/contacts cmp=com.android.contacts/.ContactsListActivity }
I/ContactsListActivity( 104): Called with action: android.intent.action.PICK
I/ActivityManager( 52): Displayed activity com.android.contacts/.ContactsListActivity: 518 ms (total 518 ms)
源代码中的联系人应用程序似乎也不包含此活动: https:// android.googlesource.com/platform/packages/apps/Contacts/+/froyo-release/src/com/android/contacts/ui
I'm firing off an intent that opens up a list of my contacts, but so far I'm unable to find the resulting activity (ContactsListActivity
) anywhere in the android source code. I've tried grepping the platform 10 source code, and searching on https://android.googlesource.com. Anyone know where I can find this?
The intent looks like the following:
new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI);
And logcat gives the following output:
I/ActivityManager( 52): Starting activity: Intent { act=android.intent.action.PICK dat=content://com.android.contacts/contacts cmp=com.android.contacts/.ContactsListActivity }
I/ContactsListActivity( 104): Called with action: android.intent.action.PICK
I/ActivityManager( 52): Displayed activity com.android.contacts/.ContactsListActivity: 518 ms (total 518 ms)
The contacts app in the source code does not seem to contain this activity either:
https://android.googlesource.com/platform/packages/apps/Contacts/+/froyo-release/src/com/android/contacts/ui
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它位于包
com.android.contacts
中:https://android.googlesource.com/platform/packages/apps/Contacts/+/froyo-release/src/com/android/contacts/ContactsListActivity.java
It is in package
com.android.contacts
:https://android.googlesource.com/platform/packages/apps/Contacts/+/froyo-release/src/com/android/contacts/ContactsListActivity.java