File tree 1 file changed +7
-0
lines changed
app/src/main/java/fr/free/nrw/commons/review
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 3
3
import android .annotation .SuppressLint ;
4
4
import android .content .Context ;
5
5
import android .content .Intent ;
6
+ import android .graphics .PorterDuff ;
7
+ import android .graphics .drawable .Drawable ;
6
8
import android .os .Bundle ;
7
9
import android .view .Menu ;
8
10
import android .view .MenuInflater ;
@@ -111,6 +113,7 @@ protected void onCreate(Bundle savedInstanceState) {
111
113
setSupportActionBar (toolbar );
112
114
initDrawer ();
113
115
116
+
114
117
reviewController = new ReviewController (deleteHelper , this );
115
118
116
119
reviewPagerAdapter = new ReviewPagerAdapter (getSupportFragmentManager ());
@@ -119,6 +122,10 @@ protected void onCreate(Bundle savedInstanceState) {
119
122
pagerIndicator .setViewPager (reviewPager );
120
123
progressBar .setVisibility (View .VISIBLE );
121
124
125
+ Drawable d []=btnSkipImage .getCompoundDrawablesRelative ();
126
+ d [2 ].setColorFilter (getApplicationContext ().getResources ().getColor (R .color .button_blue ), PorterDuff .Mode .SRC_IN );
127
+
128
+
122
129
if (savedInstanceState != null ) {
123
130
updateImage (savedInstanceState .getParcelable (SAVED_MEDIA )); // Use existing media if we have one
124
131
} else {
You can’t perform that action at this time.
0 commit comments