/** 画面回転時にレイアウトの調整をします。 */
 @Override
 protected void onConfigurationChanged(Configuration newConfig) {
   super.onConfigurationChanged(newConfig);
   updateViewLayout();
 }
 /** 表示位置を決定します。 */
 @Override
 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
   super.onSizeChanged(w, h, oldw, oldh);
   updateViewLayout();
 }