我想从服务中更改Android设备的亮度。我已经看到很多关于堆栈溢出的问题,但是没有一个能解决我的问题。
我已经通过在settingsManger中设置亮度,开始新活动等所做的一切 但他们都没有为我工作。
答案 0 :(得分:1)
尝试
android.provider.Settings.System.putInt(getContentResolver(),
android.provider.Settings.System.SCREEN_BRIGHTNESS,
BRIGHTNESS_Value);
并在Manifest.xml中添加权限
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
</manifest>
编辑: 试试:
public class ExampleService extends Service {
@Override
public void onCreate() {
// The service is being created
// set SCREEN_BRIGHTNESS
android.provider.Settings.System.putInt(getContentResolver(),
android.provider.Settings.System.SCREEN_BRIGHTNESS,
BRIGHTNESS_Value);
/// start new Activity
Intent intent = new Intent(getBaseContext(), ExampleActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getApplication().startActivity(intent);
}
@Override
public IBinder onBind(Intent intent) {
// A client is binding to the service with bindService()
return mBinder;
}
}
public class ExampleActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// The activity is being created.
}
@Override
protected void onResume() {
super.onResume();
// The activity has become visible (it is now "resumed").
this.finish();
}
}
答案 1 :(得分:0)
找到答案: 创建一个不可见的活动,但不要完成()它。 进行活动中的所有更改
虚拟活动代码:
public class DummyActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.dummy_layout);
int progress = getIntent().getIntExtra("brightness", 0);
WindowManager.LayoutParams layoutParams = getWindow().getAttributes();
layoutParams.screenBrightness = progress/255.0f;
getWindow().setAttributes(layoutParams);
Toast.makeText(this, "Came in Dummy Activity", Toast.LENGTH_SHORT).show();
}
@Override
protected void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
}
}
答案 2 :(得分:0)
即使你在吐司后打电话完成,它也可以。我试过了。
实际上,即使你不打电话给虚拟活动,它也可以。只是你不会看到显示亮度发生变化(可见),即使它在设置中正确地将亮度设置为亮度。
如果您在应用程序在后台运行时转到设置&gt;显示&gt;亮度,则可以看到显示亮度的变化。
不知道为什么会这样。
答案 3 :(得分:0)