Android references

From SoftwareGuy
Revision as of 19:16, 19 March 2023 by Mark (talk | contribs) (Created page with "== Links == [https://source.android.com/devices/tech/dalvik/configure.html Android Run Time (ART) Configuration] [http://lldb.llvm.org/lldb-gdb.html lldb debugger] [https://source.android.com/devices/tech/dalvik/gc-debug.html ART debugging] [https://source.android.com/devices/tech/config/runtime_perms.html Android Runtime Permissions] [https://developer.android.com/training/basics/activity-lifecycle/pausing.html Activity lifecycle] [https://kvurd.com/blog/compiling...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Links[edit | edit source]

Android Run Time (ART) Configuration

lldb debugger

ART debugging

Android Runtime Permissions

Activity lifecycle

Building c library for android

Interesting calls that maybe useful[edit | edit source]

Keep display from dimming when in activity...

getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD
WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON