Flags are atomic data structures used to identify state in a program.
Description: Activity A is visible (or in the background) Intent I is received by a broadcast with valuable extras and …
android android-intent flagsIm using the following code to keep the screen on: this.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN | WindowManager.LayoutParams.FLAG_…
android flagsI have multiple different Activity in my app and I don't want any transition animation when changing between Activities. Below …
android animation android-intent flagsIn Android, if you want to clear your current Activity stack and launch a new Activity (for example, logging out …
android android-intent android-activity logout flagsI have some heavily instrumented code that makes use of the log package. Now it's come time to turn off …
logging go flagsI have to build an extension method for each flag type I declare, like so: public static EventMessageScope SetFlag(this …
c# enums flagsI'm using this line below in order to set a strikethrough on my TextView: tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_…
android android-listview textview flags strikethroughI have run into a bug with gcc v3.4.4 and which to put an #ifdef in my code to work …
gcc g++ version flags preprocessorWhy are people always using enum values like 0, 1, 2, 4, 8 and not 0, 1, 2, 3, 4? Has this something to do with bit operations, etc.? I …
c# permissions enums flags