将联系人添加到 Android 模拟器
我认为我的问题非常简单:
我希望能够通过简单地单击按钮将联系人添加到联系人列表(并能够在模拟器上测试它)。该联系人的数据将存储在应用程序的源代码中。 有没有一种简单的方法可以做到这一点?
谢谢你的回答
My issue is quite simple I think :
I would like to be able to add a contact to the contact list by a simple click on a button (and be able to test it on the emulator). The data of this contact would be stored in the source code of the application.
is there an easy way of doing that?
thank you for your answers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
插入联系人的唯一简单方法是使用
INSERT
操作,您可以在其中提供一些数据并启动一个活动,以便用户提供其余数据并确认将其添加到联系人列表中。 这是一个演示这一点的示例项目。The only easy way to insert a contact is to use an
INSERT
action, where you supply some of the data and start up an activity for the user to provide the rest and confirm adding it to the contacts list. Here is a sample project demonstrating this.