I want to change brightness in color
I implemented this...
Settings.System.putInt(context.getContentResolver(),android.provider.Settings.System.SCREEN_BRIGHTNESS, 200);
this will change my device's brightness in black&white mode.
like above images, I can change brightness but how can I give color? Is there any other parameter which I don't know?
Service
is used for that, which keeps color screen on device.Ifservice
is stopped then nothing. but I did not find any clue that how to implement this coloring. – Aeroscope