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 ;
@@ -99,6 +101,7 @@ protected void onCreate(Bundle savedInstanceState) {
99
101
setSupportActionBar (toolbar );
100
102
initDrawer ();
101
103
104
+
102
105
reviewController = new ReviewController (deleteHelper , this );
103
106
104
107
reviewPagerAdapter = new ReviewPagerAdapter (getSupportFragmentManager ());
@@ -107,6 +110,10 @@ protected void onCreate(Bundle savedInstanceState) {
107
110
pagerIndicator .setViewPager (reviewPager );
108
111
progressBar .setVisibility (View .VISIBLE );
109
112
113
+ Drawable d []=btnSkipImage .getCompoundDrawablesRelative ();
114
+ d [2 ].setColorFilter (getApplicationContext ().getResources ().getColor (R .color .button_blue ), PorterDuff .Mode .SRC_IN );
115
+
116
+
110
117
if (savedInstanceState != null ) {
111
118
updateImage (savedInstanceState .getParcelable (SAVED_MEDIA )); // Use existing media if we have one
112
119
} else {
You can’t perform that action at this time.
0 commit comments