在我的 android 应用程序中,我想要一个按钮,其中第一次点击亮度为 10,第二次点击亮度为 50,第三次点击亮度为 255(完整),因为用户点击下一步,它将再次回到 10 如何代码这个我已经厌倦了这个解决方案,但只能增加
private void getBrightness() {
try
{ int curBrightnessValue = 0 ;
curBrightnessValue = android.provider.Settings.System.getInt(getContentResolver(), android.provider.Settings.System.SCREEN_BRIGHTNESS);
if(curBrightnessValue >= 250 )
{
int SysBackLightValue = curBrightnessValue-30;
android.provider.Settings.System.putInt(getContentResolver(),
android.provider.Settings.System.SCREEN_BRIGHTNESS,
SysBackLightValue);
curBrightnessValue=SysBackLightValue;
}
else if(curBrightnessValue <250)
{
int SysBackLightValue = curBrightnessValue+30;
android.provider.Settings.System.putInt(getContentResolver(),
android.provider.Settings.System.SCREEN_BRIGHTNESS,
SysBackLightValue);
curBrightnessValue=SysBackLightValue;
}
请帮我解决这个问题