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.
我想用文本框中的关键字打开谷歌搜索。链接有点像这样
http://www.google.com.vn/#hl=vi&output=search&q= + keyword
然后我mWebView (WebView object)用以下代码调用:
mWebView (WebView object)
mWebView.loadUrl(link);
此后,webview 出现(我把它放在一个弹出窗口中)和 google 页面(不是上面查询的结果)。我不知道这有什么问题。
尝试类似的东西,
mWebView.loadUrl("http://www.google.com/search?q="+value);
如果它不起作用,请发布您的链接网址..
可能是您没有从文本框中阅读内容,或者没有将其附加到链接中?