嗨,我想知道如果我能做这样的事情,我有一个有两个页面的移动网站。一个用于搜索,第二个用于结果。我的目标是制作一个具有与 php 搜索页面完全一样的搜索界面的 android 应用程序。and when the options selected the results page will show up as a webview .sorry for my english and heres a picture to clear things up .Thanks http://i.imgur.com/jGnin.jpg i just need a tip to replace the带有android搜索界面的php搜索页面。我在webview部分也不需要任何帮助。
问问题
281 次
1 回答
0
您可以设置一个 WebView 来显示搜索页面,这对我来说似乎是更合乎逻辑的解决方案(可以这样实现:)
WebView wv = (WebView)findViewById(R.id.webView);
//you can load an html code
wv.loadData("yourCode Html to load on the webView " , "text/html" , "utf-8");
// you can load an URL
wv.loadUrl("http://www.stackoverflow.com");
或者如果你坚持只拥有一个不是 WebView 的界面,你需要修改你的搜索页面以某种方式获取数据(使用 GET 会是更好的选择,类似于谷歌)然后在玩家点击搜索时打开webview 并设置您的搜索条件,如下所示:
wv.loadUrl("http://www.stackoverflow.com?q=some+text+searc+in+your+app");
于 2012-05-28T13:45:14.037 回答