我正在开发一个以编程方式更改屏幕亮度的Android应用程序。我有一个适用于5.1.1的设置亮度方法,但是当我在6.0上运行应用程序时,它会出错并关闭应用程序。 请帮助。
以下是我的方法:
public void setBrightness(View view,int brightness){
//Just a loop for checking whether the brightness changes
if(brightness <46)
brightness = 255;
else if(brightness >150)
brightness=45;
ContentResolver cResolver = this.getApplicationContext().getContentResolver();
Settings.System.putInt(cResolver, Settings.System.SCREEN_BRIGHTNESS, brightness);
}
public void setDisplay(View view)
{
ContentResolver cResolver = getContentResolver();
Window window = getWindow();
int brightness=0;
try
{ Settings.System.putInt(cResolver,Settings.System.SCREEN_BRIGHTNESS_MODE
Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL);
brightness = Settings.System.getInt(cResolver, Settings.System.SCREEN_BRIGHTNESS);
System.out.println("Current Brightness level " + brightness);
}
catch (Exception e)
{
Log.e("Error", "Cannot access system brightness");
e.printStackTrace();
}
setBrightness(view,brightness);
}
答案 0 :(得分:8)
显然,您需要明确要求用户获得运行Android 6.0 +的设备的权限。
请尝试以下代码:(我已经为您修改过了)
@TargetApi(Build.VERSION_CODES.M)
public void setBrightness(View view,int brightness){
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if (Settings.System.canWrite(getApplicationContext()))
{
if (brightness < 46)
brightness = 255;
else if (brightness > 47)
brightness = 0;
ContentResolver cResolver = this.getApplicationContext().getContentResolver();
Settings.System.putInt(cResolver, Settings.System.SCREEN_BRIGHTNESS, brightness);
} else
{
Intent intent = new Intent(android.provider.Settings.ACTION_MANAGE_WRITE_SETTINGS);
intent.setData(Uri.parse("package:" + this.getPackageName()));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
}
请注意,您还需要清单中的WRITE_SETTINGS权限。
答案 1 :(得分:2)
如果您想要指定活动/片段,请尝试以下方法:
WindowManager.LayoutParams lp = getWindow().getAttributes();
lp.screenBrightness = 70 / 100.0f;
getWindow().setAttributes(lp);
答案 2 :(得分:1)
科特林版本。
<uses-permission android:name="android.permission.WRITE_SETTINGS" tools:ignore="ProtectedPermissions" />
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_test)
if(isCanWriteSettings(this))
setupLight(this,255)//0~255
else
requestCanWriteSettings(this)
}
/**
*
* @param context
* @param light max 255
*/
fun setupLight(context: Context, light: Int) {
try {
val brightnessMode = Settings.System.getInt(
context.contentResolver,
Settings.System.SCREEN_BRIGHTNESS_MODE
)
if (brightnessMode == Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC) {
Settings.System.putInt(
context.contentResolver,
Settings.System.SCREEN_BRIGHTNESS_MODE,
Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL
)
}
Settings.System.putInt(
context.contentResolver,
Settings.System.SCREEN_BRIGHTNESS,
light
)
} catch (e: Exception) {
Log.e("setupLight","Exception $e")
}
}
fun isCanWriteSettings(context: Context): Boolean {
return Build.VERSION.SDK_INT < Build.VERSION_CODES.M || Settings.System.canWrite(context)
}
fun requestCanWriteSettings(activity: Activity){
if (isCanWriteSettings(context = activity))
return //not need
try {
val intent = Intent(Settings.ACTION_MANAGE_WRITE_SETTINGS)
intent.data = Uri.parse("package:" + activity.packageName)
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
activity.startActivityForResult(intent, 0)
}catch (e: Exception){
Log.e("requestCanWriteSettings","requestCanWriteSettings $e")
}
}