Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够在应用程序中打开一个应用程序的小版本,我可以为其创建自定义宽度/高度。所以在某种程度上,想想一个网络浏览器,我希望能够在主应用程序中“浏览”任何应用程序。是否可以编写这样的程序?在应用程序中运行应用程序?
您可以通过Intent启动另一个应用程序。但是在您的应用程序的视图中运行另一个应用程序是不可能的。
看:
在应用程序内启动 Android 应用程序?
我们可以使用 Fragments http://developer.android.com/guide/components/fragments.html来实现这种功能。这可能是一个开始...