Importing gmail contacts on android emulator(在 android 模拟器上导入 gmail 联系人)
问题描述
我想在 Android 模拟器上从我的 gmail 帐户导入联系人,方法与在 T-Mobile G1 手机
上相同.
I want to import contacts from my gmail account on android emulator in the same way you can do it on T-Mobile G1 phone
.
有可能吗?
[我也有这个问题:pentium10]
我想知道是否有办法做到这一切?
推荐答案
我不知道如何设置永久同步,但您可以相对简单地一次性导入联系人.
I don't know about setting up a permanent sync, but you can do a one-time import of your contacts relatively simply.
使用网络浏览器转到您的 gmail 帐户,点击左侧边栏上的联系人".选择您想要在手机上的所有联系人,然后选择以 vCard 格式导出它们.这会将包含联系人的 *.vcf 文件下载到您的计算机.
Go to your gmail account using a web browser, click 'contacts' on the left sidebar. Select all the contacts you want on your phone, and choose to export them in vCard format. This will download a *.vcf file to your computer containing the contacts.
将 vcf 文件推送到模拟器上的 SD 卡,如下所示:
Push the vcf file to the SD card on your emulator, like so:
$ adb push contacts.vcf /sdcard/contacts.vcf
$ adb sync
然后在模拟器上打开通讯录应用,点击菜单,导入.选择从 SD 卡导入,将找到 vCard 文件并导入您的联系人.
Then open the contacts app on the emulator, and hit menu, import. Choose to import from SD card, and the vCard file will be found and your contacts imported.
这篇关于在 android 模拟器上导入 gmail 联系人的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 android 模拟器上导入 gmail 联系人
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01