本文實(shí)例講述了Android編程實(shí)現(xiàn)動(dòng)態(tài)支持多語言的方法。分享給大家供大家參考,具體如下:
成都創(chuàng)新互聯(lián)是一家專業(yè)提供廣陽企業(yè)網(wǎng)站建設(shè),專注與成都做網(wǎng)站、成都網(wǎng)站建設(shè)、H5網(wǎng)站設(shè)計(jì)、小程序制作等業(yè)務(wù)。10年已為廣陽眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。
資源文件values/strings.xml中添加
<string name="current_language">English</string> <string name="test">test</string>
創(chuàng)建values-en文件夾,添加資源文件 strings.xml:
<resources> <string name="current_language">English</string> <string name="test">test</string> </resources>
創(chuàng)建values-zh文件夾,添加資源文件 strings.xml
<resources> <string name="current_language">Chinese</string> <string name="test">測試</string> </resources>
MainActivity layout中添加測試控件
<TextView ... text = "@string/userid" ... />
Main Activity 中添加代碼:
public class MainActivity ... { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ... updateResources(this,"zh"); ... } } private static boolean updateResources(Context context, String language) { Locale locale = new Locale(language); Locale.setDefault(locale); Resources resources = context.getResources(); Configuration configuration = resources.getConfiguration(); configuration.locale = locale; resources.updateConfiguration(configuration, resources.getDisplayMetrics()); return true; }
更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android開發(fā)入門與進(jìn)階教程》、《Android視圖View技巧總結(jié)》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android數(shù)據(jù)庫操作技巧總結(jié)》、《Android資源操作技巧匯總》及《Android控件用法總結(jié)》
希望本文所述對大家Android程序設(shè)計(jì)有所幫助。
當(dāng)前名稱:Android編程實(shí)現(xiàn)動(dòng)態(tài)支持多語言的方法
URL鏈接:http://muchs.cn/article6/jsdoog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)網(wǎng)站制作、商城網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、企業(yè)建站、響應(yīng)式網(wǎng)站、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)