@@ -1098,7 +1098,7 @@ protected void onLayout(boolean changed, int l, int t, int r, int b) {
10981098 if (customView != null ) {
10991099 final int resolvedLayoutDirection = getLayoutDirection ();
11001100 ViewGroup .LayoutParams lp = customView .getLayoutParams ();
1101- lp .onResolveLayoutDirection (resolvedLayoutDirection );
1101+ lp .resolveLayoutDirection (resolvedLayoutDirection );
11021102 final ActionBar .LayoutParams ablp = lp instanceof ActionBar .LayoutParams ?
11031103 (ActionBar .LayoutParams ) lp : null ;
11041104 final int gravity = ablp != null ? ablp .gravity : DEFAULT_CUSTOM_GRAVITY ;
@@ -1385,7 +1385,7 @@ protected void onLayout(boolean changed, int l, int t, int r, int b) {
13851385 int upOffset = 0 ;
13861386 if (mUpView .getVisibility () != GONE ) {
13871387 final LayoutParams upLp = (LayoutParams ) mUpView .getLayoutParams ();
1388- upLp .onResolveLayoutDirection (layoutDirection );
1388+ upLp .resolveLayoutDirection (layoutDirection );
13891389 final int upHeight = mUpView .getMeasuredHeight ();
13901390 final int upWidth = mUpView .getMeasuredWidth ();
13911391 upOffset = upLp .leftMargin + upWidth + upLp .rightMargin ;
@@ -1406,7 +1406,7 @@ protected void onLayout(boolean changed, int l, int t, int r, int b) {
14061406 }
14071407
14081408 final LayoutParams iconLp = (LayoutParams ) mIconView .getLayoutParams ();
1409- iconLp .onResolveLayoutDirection (layoutDirection );
1409+ iconLp .resolveLayoutDirection (layoutDirection );
14101410 final int iconHeight = mIconView .getMeasuredHeight ();
14111411 final int iconWidth = mIconView .getMeasuredWidth ();
14121412 final int hCenter = (r - l ) / 2 ;
0 commit comments