如何在 Android 中创建网页?
我希望我的活动链接到我创建的网页。
我想在 Android 中创建网页内容。
怎么可能呢?
I want my activity to link to a web page which I have created.
I want to create the web page contents in Android.
How is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有点不清楚你的要求是什么......但听起来像 WebView 可能就是您正在寻找的。
它允许您在应用程序中包含网页。即从视图内链接到网络,并留在应用程序内。这还允许您在活动内“创建”内容,将其保存到文件系统并通过 WebView 加载它。否则,如果您想“创建”内容,您可以使用自己开发的 Web 服务将内容发送到远程服务器,然后由您的 Web 视图或通过常规浏览器访问。
如果您只是尝试在标准浏览器中打开应用程序中的链接,请尝试使用意图进行查找。请参阅此处查看示例。
A little unclear what your requirements are... But it sounds like WebView is probably what you are looking for.
It allows you to include web pages inside of your app. i.e. linking to a web from within a view, and stay within an app. This also allows you to potentially "create" content inside of an activity, save it to the file system and load it through your WebView. Otherwise, if you want to "create" content you can use your own homegrown web services to send content to a remote server to then accessed by your webview, or through the regular browser.
If you are just trying to open a link from your app in the standard browser try looking using intents. See here for an example.