のねのBlog

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

2012-04-12から1日間の記事一覧

onConfigurationChanged その2

public void onConfigurationChanged(Configuration newConfig) { mCalled = true; mFragments.dispatchConfigurationChanged(newConfig); if (mWindow != null) { // Pass the configuration changed event to the window mWindow.onConfigurationChanged(n…

TextView.Invalidate

/frameworks/base/core/java/android/view/View.java 8530 /** 8531 * This is where the invalidate() work actually happens. A full invalidate() 8532 * causes the drawing cache to be invalidated, but this function can be called with 8533 * inva…

ConfigurationChange

Handling the Configuration Change Yourself public final class Configuration onConfigurationChanged(Configuration newConfig) フラグメントは、mFragments.dispatchConfigurationChanged(newConfig);の方かな? https://github.com/android/platform_f…