We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcb3b43 commit 35cbd20Copy full SHA for 35cbd20
IconColorization/app/src/main/java/com/ptrprograms/iconcolorization/activity/MainActivity.java
@@ -65,7 +65,10 @@ protected void onCreate(Bundle savedInstanceState) {
65
.transform( new ColorTransformation( getResources().getColor( R.color.remote_image_color ) ) )
66
.into( mDrawableUrlTransformedImage );
67
68
- Picasso.with( this ).load( R.drawable.ic_star ).transform( new ColorTransformation( getResources().getColor( R.color.action_bar_icon_color ) ) ).into(ActionBarIconTarget);
+ Picasso.with( this )
69
+ .load( R.drawable.ic_star )
70
+ .transform( new ColorTransformation( getResources().getColor( R.color.action_bar_icon_color ) ) )
71
+ .into( ActionBarIconTarget );
72
}
73
74
0 commit comments