編輯:關於Android編程
Locale.setDefault(Locale.ENGLISH); Configuration config = getBaseContext().getResources().getConfiguration(); config.locale = Locale.ENGLISH; getBaseContext().getResources().updateConfiguration(config , getBaseContext().getResources().getDisplayMetrics());
這樣,打開的子窗體的字串都會從value-en\string.xml中取字串。
value-en\string.xml為英語
Switch Language test Sub activity Author:canto123 Exit Data= Lost data after language switched
values\string.xml為默認語言,如果不存在value-en目錄下的string.xml,英文也會取這裡的字串
語言切換實驗 作者:雜貨鋪 Settings 退出 數據= 子頁面 可以看到切換後,數據丟失
三)如果要當前頁顯示語言切換效果,則要重啟當前頁:
Intent intent = new Intent(); intent.setClass(this,MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(intent);
注意:這樣做時,該頁面中的變量值會被初始化--丟失原來的值
Android開發中少不了真機調試,總用數據線插插拔拔的還是不方便也不穩定,其實可以實現WIFI的方式連接android手機。 &nbs
最近項目中接觸到AppWidget,相對來說這部分比較簡單,所以趁著空余時間詳細閱讀了AppWidget的源碼。這篇文章主要是從源碼上分析AppWidget中API類的相
(一)LinearLayout常用屬性1. orientation —–布局組件中的排列方式,有水平(horizontal),垂直(vertica
Android Service服務詳解一.Service簡介 Service是andro