• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. K

    Apps Change brightness in Donut

    Hi there, I am updating my application to Android 1.6 Donut. On Donut, I can't change the screen brightness from my application anymore. On Cupcake it works, and I do it this way: LayoutParams lp = getWindow().getAttributes(); lp.screenBrightness = 0.2f; getWindow().setAttributes(lp)...