のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

2015-02-22から1日間の記事一覧

PhoneStatusBar onConfigurationChange

3125 // SystemUIService notifies SystemBars of configuration changes, which then calls down here 3126 @Override 3127 protected void onConfigurationChanged(Configuration newConfig) { 3128 super.onConfigurationChanged(newConfig); // calls re…

Config.updateFrom

824 public int updateFrom(Configuration delta) { 825 int changed = 0; 826 if (delta.fontScale > 0 && fontScale != delta.fontScale) { 827 changed |= ActivityInfo.CONFIG_FONT_SCALE; 828 fontScale = delta.fontScale; 829 } 830 if (delta.mcc !=…

BaseStatusBar

648 @Override 649 protected void onConfigurationChanged(Configuration newConfig) { 650 final Locale locale = mContext.getResources().getConfiguration().locale; 651 final int ld = TextUtils.getLayoutDirectionFromLocale(locale); 652 final fl…

SystemBars

161 public ServiceMonitor(String ownerTag, boolean debug, 162 Context context, String settingKey, Callbacks callbacks) { 163 mTag = ownerTag + ".ServiceMonitor"; 164 mDebug = debug; 165 mContext = context; 166 mSettingKey = setti…