FFImageLoading.Views.ImageViewAsync.OnMeasure C# (CSharp) Méthode

OnMeasure() protected méthode

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