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 联系人


- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01