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?


基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01