FFImageLoading.Views.ImageViewAsync.OnMeasure C# (CSharp) 메소드

OnMeasure() 보호된 메소드

protected OnMeasure ( int widthMeasureSpec, int heightMeasureSpec ) : void
widthMeasureSpec int
heightMeasureSpec int
리턴 void
		protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec)
		{
			if (Drawable == null)
			{
				SetMeasuredDimension(widthMeasureSpec, heightMeasureSpec);
			}
			else
			{
				base.OnMeasure(widthMeasureSpec, heightMeasureSpec);
			}
		}