桌面 PC 和 Android 界面
我正在考虑开发一个 PC 桌面程序来从 Android 手机获取应用程序设置、安装/卸载 apk 应用程序、同步照片/视频/音乐并显示网页内容。
最初的想法是使用.Net编写桌面程序和shell ADB工具在android手机上进行安装和文件复制。然而,ADB 的高级功能似乎仅适用于已 root 的 Android 手机。
windows和android系统之间有通讯接口吗?基于 Mobile Action 的一款名为“Android Manager”的应用程序,它似乎可以提取手机上安装的应用程序,但似乎在没有 root 访问权限的情况下仅通过 ADB 无法完成此操作。
我想使用 USB 电缆传输信息。有什么想法可以研究吗?非常感谢
I'm thinking to develop a PC desktop program to get application setting from android phone, install/uninstall apk application, sync photos/videos/music and display a web content.
Initial thought is to use .Net to write desktop program and shell ADB tool to do installation and file copy on android phone. However seems like advanced feature of ADB only works on a rooted android phone.
Is there an communication interface between windows and android system? Based on an app called "Android Manager" by Mobile Action, it seems that it can pull out what apps are installed on the phone but seems like this cannot be done by ADB alone without root access.
I would like to do the transfer of information using USB cable. Any thoughts where to research on? Thanks much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想使用USB电缆,你只能使用ADB,但你可以使用ADB在你的电脑和移动设备之间建立一个套接字。然后双方都可以连接到该套接字并使用它来传输数据。
If you want to use the USB cable you can only use ADB, but you can use ADB to set up a socket between your pc and the mobile device. Both sides can then connect to this socket and use it to transmit data.