android將搜索引擎設(shè)置為中國雅虎無法搜索問題解決方法
更新時間:2013年06月08日 11:27:37 作者:
android 進入搜索,將搜索引擎設(shè)置為中國雅虎,無法搜索到相關(guān)網(wǎng)絡(luò)結(jié)果,該問題是由于yahoo的搜索接口改變導(dǎo)致,具體解決方法如下,感興趣的朋友可以參考下哈
該問題是由于yahoo的搜索接口改變導(dǎo)致,請修改
Donottranslate-all_search_engines.xml (x:\6575gb2\v2.12\alps\mediatek\source\frameworks\banyan\res\res\values)41753 8/11/2011
中的<string-array name="yahoo_cn" translatable="false">的定義為
<string-array name="yahoo_cn" translatable="false">
<item>中国雅虎</item>
<item>cn.yahoo.com</item>
<item>search_engine_yahoo</item>
<item>http://search.cn.yahoo.com/s?ei={inputEncoding}&fr=crmas&p={searchTerms}</item>
<item>GB2312</item>
<item></item>
</string-array>
再修改 <string-array name="yahoo" translatable="false">的定義為
<string-array name="yahoo" translatable="false">
<item>Yahoo!</item>
<item>yahoo.com</item>
<item>search_engine_yahoo</item>
<item>http://search.yahoo.com/s?ei={inputEncoding}&fr=crmas&p={searchTerms}</item>
<item>UTF-8</item>
<item>http://ff.search.yahoo.com/gossip?output=fxjson&command={searchTerms}</item>
</string-array>
Donottranslate-all_search_engines.xml (x:\6575gb2\v2.12\alps\mediatek\source\frameworks\banyan\res\res\values)41753 8/11/2011
中的<string-array name="yahoo_cn" translatable="false">的定義為
復(fù)制代碼 代碼如下:
<string-array name="yahoo_cn" translatable="false">
<item>中国雅虎</item>
<item>cn.yahoo.com</item>
<item>search_engine_yahoo</item>
<item>http://search.cn.yahoo.com/s?ei={inputEncoding}&fr=crmas&p={searchTerms}</item>
<item>GB2312</item>
<item></item>
</string-array>
再修改 <string-array name="yahoo" translatable="false">的定義為
復(fù)制代碼 代碼如下:
<string-array name="yahoo" translatable="false">
<item>Yahoo!</item>
<item>yahoo.com</item>
<item>search_engine_yahoo</item>
<item>http://search.yahoo.com/s?ei={inputEncoding}&fr=crmas&p={searchTerms}</item>
<item>UTF-8</item>
<item>http://ff.search.yahoo.com/gossip?output=fxjson&command={searchTerms}</item>
</string-array>
您可能感興趣的文章:
- 淺析Android位置權(quán)限以及數(shù)組尋找索引的坑
- android仿微信聯(lián)系人索引列表功能
- Android ItemDecoration 實現(xiàn)分組索引列表的示例代碼
- android仿微信通訊錄搜索示例(匹配拼音,字母,索引位置)
- Android 實現(xiàn)帶字母索引的側(cè)邊欄功能
- Android自定義View實現(xiàn)通訊錄字母索引(仿微信通訊錄)
- Android通用索引欄實現(xiàn)代碼
- Android手機聯(lián)系人帶字母索引的快速查找
- Android手機聯(lián)系人快速索引(手機通訊錄)
- android 左右滑動+索引圖標實現(xiàn)方法與代碼
- Android 解決游戲發(fā)行切包資源索引沖突的問題
相關(guān)文章
Android開發(fā)筆記之:如何安全中止一個自定義線程Thread的方法
本篇文章是對Android中如何安全中止一個自定義線程Thread的方法進行了詳細的分析介紹,需要的朋友參考下2013-05-05
Android編程實現(xiàn)TextView字體顏色設(shè)置的方法小結(jié)
這篇文章主要介紹了Android編程實現(xiàn)TextView字體顏色設(shè)置的方法,結(jié)合實例形式總結(jié)分析了Android針對TextView字體顏色設(shè)置的相關(guān)步驟與注意事項,具有一定參考借鑒價值,需要的朋友可以參考下2015-12-12
Flutter 首頁必用組件NestedScrollView的示例詳解
今天介紹的組件是NestedScrollView,大部分的App首頁都會用到這個組件。對Flutter 首頁必用組件NestedScrollView的相關(guān)知識感興趣的一起看看吧2020-05-05
Android應(yīng)用開發(fā)的版本更新檢測升級功能實現(xiàn)示例
本文對Android版本更新的知識做全面的總結(jié),主要包括開發(fā)中版本的設(shè)置,如何檢測本程序的版本,版本的更新判斷和顯示,新版本程序的安裝2022-04-04

