In AVD emulator how to see sdcard folder and install an APK to the AVD?(在 AVD 模拟器中如何查看 sdcard 文件夹并将 APK 安装到 AVD?)
问题描述
我已经创建了一个 Android 模拟器(Android 虚拟设备),但是我无法找到我在创建此模拟器时构建的 SD 卡.
I have created an Android emulator (Android Virtual Device), but I am unable to find out the SD card I have built during creation of this.
如何找到 SD 卡及其内容以及如何将 APK 文件安装到 AVD?
How can I find the SD card and its content and also how to install APK files to the AVD?
推荐答案
- 切换到 DDMS 视角
- 在 设备 列表中选择您要探索其 SD 卡的模拟器.
- 打开右侧的文件资源管理器标签.
- 展开树形结构.mnt/sdcard/
- switch to DDMS perspective
- select the emulator in devices list, whose sdcard you want to explore.
- open File Explorer tab on right hand side.
- expand tree structure. mnt/sdcard/
参考下面的图片
手动安装apk:将您的 apk 复制到 sdk/platform-tools 文件夹并在同一文件夹中运行以下命令
To install apk manually: copy your apk to to sdk/platform-tools folder and run following command in the same folder
adb install apklocation.apk
这篇关于在 AVD 模拟器中如何查看 sdcard 文件夹并将 APK 安装到 AVD?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 AVD 模拟器中如何查看 sdcard 文件夹并将 APK 安装到 AVD?


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