OpenSeizureDetector / Android_Pebble_SD

The main OpenSeizureDetector Android App, that is published on the Android Play Store.
http://openseizuredetector.org.uk
GNU General Public License v3.0
9 stars 11 forks source link

New MainActivity screen blanks #141

Closed jones139 closed 5 months ago

jones139 commented 5 months ago

The old main activity screen does not blank when the phone is plugged in. But the new main activity (MainActivity2) blanks after a while. I haven't worked out why they are different yet....

jones139 commented 5 months ago

Found it now. It is
// Force the screen to stay on when the app is running getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); which is in MainActivity.java but was missed in MainActivity2.java for some reason. Added it into onResume()

I also realised that the "prevent screen from blanking" setting does not actually do anything, so removed it.