画面の下部に配置している UITextField があります。
通常、このテキスト フィールドはキーボードによって非表示になりますが、次の組み合わせに従いました。
- http://spazzarama.com/2011/09/07/monotouch-auto-scroll-uitextfield-or-other-views-hidden-by-keyboard/
- http://www.ashokkarunakaran.com/2012/09/08/monotouchdatepicker/
そして、選択すると日付ピッカーが表示され、UITextField が邪魔にならないように自動スクロールされる UITextField を作成しました。
電話を横向きに回転させるまで、これはうまく機能します。
横向きになると、UITextField が画面の上に押し上げられすぎて見えなくなります。
コードでは、UIKeyboard.WillShowNotification をサブスクライブし、以下の KeyboardWillShowNotification を呼び出します。
protected virtual void KeyboardWillShowNotification (NSNotification notification)
{
UIView activeView = KeyboardGetActiveView();
if (activeView == null)
return;
UIScrollView scrollView = activeView.FindSuperviewOfType(this.View, typeof(UIScrollView)) as UIScrollView;
if (scrollView == null)
return;
RectangleF keyboardBounds = UIKeyboard.FrameBeginFromNotification(notification);
UIEdgeInsets contentInsets = new UIEdgeInsets(0.0f, 0.0f, keyboardBounds.Size.Height, 0.0f);
scrollView.ContentInset = contentInsets;
scrollView.ScrollIndicatorInsets = contentInsets;
// If activeField is hidden by keyboard, scroll it so it's visible
RectangleF viewRectAboveKeyboard = new RectangleF(this.View.Frame.Location, new SizeF(this.View.Frame.Width, this.View.Frame.Size.Height - keyboardBounds.Size.Height));
RectangleF activeFieldAbsoluteFrame = activeView.Superview.ConvertRectToView(activeView.Frame, this.View);
// activeFieldAbsoluteFrame is relative to this.View so does not include any scrollView.ContentOffset
// Check if the activeField will be partially or entirely covered by the keyboard
if (!viewRectAboveKeyboard.Contains(activeFieldAbsoluteFrame))
{
// Scroll to the activeField Y position + activeField.Height + current scrollView.ContentOffset.Y - the keyboard Height
PointF scrollPoint = new PointF(0.0f, activeFieldAbsoluteFrame.Location.Y + activeFieldAbsoluteFrame.Height + scrollView.ContentOffset.Y - viewRectAboveKeyboard.Height);
scrollView.SetContentOffset(scrollPoint, true);
}
}
2 つの補足機能:
protected virtual UIView KeyboardGetActiveView()
{
return this.View.FindFirstResponder();
}
public static UIView FindFirstResponder (this UIView view)
{
if (view.IsFirstResponder)
{
return view;
}
foreach (UIView subView in view.Subviews) {
var firstResponder = subView.FindFirstResponder();
if (firstResponder != null)
return firstResponder;
}
return null;
}
public static UIView FindSuperviewOfType(this UIView view, UIView stopAt, Type type)
{
if (view.Superview != null)
{
if (type.IsAssignableFrom(view.Superview.GetType()))
{
return view.Superview;
}
if (view.Superview != stopAt)
return view.Superview.FindSuperviewOfType(stopAt, type);
}
return null;
}
完全なソースは BitBucket にあります: https://bitbucket.org/benhysell/uitextfielddatepicker
私が間違っているかもしれないことについてのアイデア?